|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- [
- {
- "Kind": 0,
- "FunctionName": "GetWeather",
- "FunctionDescription": "get weather",
- "FunctionParameters": {
- "type": "object",
- "properties": {
- "city": {
- "type": "string"
- },
- "date": {
- "type": "string"
- }
- },
- "required": [
- "city"
- ]
- }
- },
- {
- "Kind": 0,
- "FunctionName": "GetWeatherStatic",
- "FunctionDescription": "get weather from static method",
- "FunctionParameters": {
- "type": "object",
- "properties": {
- "city": {
- "type": "string"
- },
- "date": {
- "type": "array",
- "items": {
- "type": "string"
- }
- }
- },
- "required": [
- "city",
- "date"
- ]
- }
- },
- {
- "Kind": 0,
- "FunctionName": "GetWeather",
- "FunctionDescription": "get weather from async method",
- "FunctionParameters": {
- "type": "object",
- "properties": {
- "city": {
- "type": "string"
- }
- },
- "required": [
- "city"
- ]
- }
- },
- {
- "Kind": 0,
- "FunctionName": "GetWeatherAsyncStatic",
- "FunctionDescription": "get weather from async static method",
- "FunctionParameters": {
- "type": "object",
- "properties": {
- "city": {
- "type": "string"
- }
- },
- "required": [
- "city"
- ]
- }
- }
- ]
|