Function callingのJSON
JSONフォーマットを確認し、2で作成したAPI作成用のGPTにフォーマットを再度整えてもらう。
プロンプト例
使うAPIの種類が変わったため、以下のJSONの例に合わせてフォーマットを調整してください。
{
"name": "get_weather",
"description": "Determine weather in my location",
"parameters": {
"type": "object",
"properties": {
"location": {
"type": "string",
"description": "The city and state e.g. San Francisco, CA"
},
"unit": {
"type": "string",
"enum": [
"c",
"f"
]
}
},
"required": [
"location"
]
}
}
2024/06/30 01:04