feat: langchain improved

This commit is contained in:
Musa 2026-01-16 13:10:03 -08:00
parent 5cf67a8189
commit 6efaa0cf8d
11 changed files with 1702 additions and 0 deletions

View 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"}
]
}