v0.1.1
Added cohere support in portal
What's new
- Portal now supports api requests for cohere chat api. Just replace
api.cohere.aiwithgateway.quivly.ai
curl --location 'http://gateway.quivly.ai/v1/chat' \
--header 'x-provider: cohere' \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--header 'Authorization: Bearer <cohere-api-key>' \
--data '{
"chat_history": [
{
"role": "USER",
"message": "Who discovered gravity?"
}
],
"message": "What year was he born?",
"connectors": []
}'