Commit ba264e9d authored by Jeffrey Morgan's avatar Jeffrey Morgan
Browse files

add future version note to chat api docs

parent a2405ec8
...@@ -214,13 +214,13 @@ curl http://localhost:11434/api/generate -d '{ ...@@ -214,13 +214,13 @@ curl http://localhost:11434/api/generate -d '{
}' }'
``` ```
Or send a chat message: Or send a chat message (coming in 0.1.14):
``` ```
curl http://localhost:11434/api/chat -d '{ curl http://localhost:11434/api/chat -d '{
"model": "mistral", "model": "mistral",
"messages": [ "messages": [
{ "role": "user", "content": "why is the sky blue?" } { "role": "user", "content": "why is the sky blue?" }
] ]
}' }'
``` ```
......
...@@ -291,7 +291,7 @@ curl http://localhost:11434/api/generate -d '{ ...@@ -291,7 +291,7 @@ curl http://localhost:11434/api/generate -d '{
} }
``` ```
## Send Chat Messages ## Send Chat Messages (coming in 0.1.14)
```shell ```shell
POST /api/chat POST /api/chat
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment