mirror of
https://github.com/katanemo/plano.git
synced 2026-06-26 15:39:40 +02:00
35 lines
812 B
ReStructuredText
35 lines
812 B
ReStructuredText
### Weather via Plano (8001)
|
|
POST http://localhost:8001/v1/chat/completions
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"model": "openai/gpt-4o-mini",
|
|
"stream": true,
|
|
"messages": [
|
|
{ "role": "user", "content": "What's the weather in Lahore?" }
|
|
]
|
|
}
|
|
|
|
### Flight via Plano (8001)
|
|
POST http://localhost:8001/v1/chat/completions
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"model": "openai/gpt-4o-mini",
|
|
"stream": false,
|
|
"messages": [
|
|
{ "role": "user", "content": "Find flights from Seattle to Atlanta." }
|
|
]
|
|
}
|
|
|
|
### Multi-intent via Plano (8001)
|
|
POST http://localhost:8001/v1/chat/completions
|
|
Content-Type: application/json
|
|
|
|
{
|
|
"model": "openai/gpt-4o-mini",
|
|
"stream": false,
|
|
"messages": [
|
|
{ "role": "user", "content": "What's the weather in Tokyo this weekend, and any direct flights to Sydney?" }
|
|
]
|
|
}
|