Added message format for chat api (#1488)

This commit is contained in:
pepperoni21 2023-12-13 17:21:23 +01:00 committed by GitHub
parent d9e60f634b
commit e3b090dbc5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -304,6 +304,10 @@ Generate the next message in a chat with a provided model. This is a streaming e
- `model`: (required) the [model name](#model-names)
- `messages`: the messages of the chat, this can be used to keep a chat memory
A message is an object with the following fields:
- `role`: the role of the message, either `user`, `assistant` or `system`
- `content`: the content of the message
Advanced parameters (optional):
- `format`: the format to return a response in. Currently the only accepted value is `json`