@host = http://localhost:8088 @endpoint = {{host}}/responses ### Health Check GET {{host}}/readiness ### Simple string input POST {{endpoint}} Content-Type: application/json { "input": "Please use the microsoft_docs_fetch tool to fetch and summarize the Microsoft Learn article at https://learn.microsoft.com/azure/ai-services/openai/overview" } ### Explicit input POST {{endpoint}} Content-Type: application/json { "input": [ { "type": "message", "role": "user", "content": [ { "type": "input_text", "text": "Please use the microsoft_docs_fetch tool to fetch and summarize the Microsoft Learn article at https://learn.microsoft.com/azure/ai-services/openai/overview" } ] } ] }