Python: follow on work on OpenAI (#169)

* updated openai, fcc works, with sample

* reduced files in openai
This commit is contained in:
Eduard van Valkenburg
2025-07-12 07:15:51 +02:00
committed by GitHub
Unverified
parent 80c1e2ee0a
commit 407ed6de70
32 changed files with 693 additions and 668 deletions
+20
View File
@@ -0,0 +1,20 @@
{
"type": "function",
"function": {
"name": "get_weather",
"description": "Get the weather for a given location.",
"parameters": {
"properties": {
"location": {
"title": "Location",
"type": "string"
}
},
"required": [
"location"
],
"title": "get_weather_input",
"type": "object"
}
}
}