mirror of
https://github.com/katanemo/plano.git
synced 2026-06-29 15:49:40 +02:00
21 lines
462 B
Text
21 lines
462 B
Text
|
|
POST http://localhost:14000/v1/chat/completions
|
||
|
|
Content-Type: application/json
|
||
|
|
|
||
|
|
{
|
||
|
|
"messages": [
|
||
|
|
{
|
||
|
|
"role": "user",
|
||
|
|
"content": "hello"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"role": "assistant",
|
||
|
|
"content": "Hello! I'm here to assist you with any questions related to currency conversions and exchange rates. How can I help you today?"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
"role": "user",
|
||
|
|
"content": "what is the exchange rate of USD to EUR?"
|
||
|
|
}
|
||
|
|
],
|
||
|
|
"stream": true
|
||
|
|
}
|