| 8 | import { RequiredActionFunctionToolCall } from "openai/resources/beta/threads/runs/runs"; |
| 9 | |
| 10 | interface WeatherData { |
| 11 | location?: string; |
| 12 | temperature?: number; |
| 13 | conditions?: string; |
| 14 | } |
| 15 | |
| 16 | const FunctionCalling = () => { |
| 17 | const [weatherData, setWeatherData] = useState<WeatherData>({}); |
nothing calls this directly
no outgoing calls
no test coverage detected