mirror of
https://github.com/katanemo/plano.git
synced 2026-07-11 16:12:13 +02:00
feat: langchain improved
This commit is contained in:
parent
5cf67a8189
commit
6efaa0cf8d
11 changed files with 1702 additions and 0 deletions
21
demos/use_cases/multi_frameworks/gateway_test.rest
Normal file
21
demos/use_cases/multi_frameworks/gateway_test.rest
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
### Test weather agent via Plano gateway
|
||||
POST http://localhost:11000/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"}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue