mirror of
https://github.com/katanemo/plano.git
synced 2026-06-17 15:25:17 +02:00
21 lines
475 B
ReStructuredText
21 lines
475 B
ReStructuredText
### Test weather agent via Plano gateway
|
|
POST http://localhost:8001/v1/chat/completions
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"model": "gpt-4o",
|
|
"messages": [
|
|
{"role": "user", "content": "What's the weather in Seattle today?"}
|
|
]
|
|
}
|
|
|
|
### Test flight agent via Plano gateway
|
|
POST http://localhost:8001/v1/chat/completions
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"model": "gpt-4o",
|
|
"messages": [
|
|
{"role": "user", "content": "Find flights from Seattle to New York"}
|
|
]
|
|
}
|