Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add remote model command-r #2868

Merged
merged 1 commit into from
May 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
34 changes: 32 additions & 2 deletions extensions/inference-cohere-extension/resources/models.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[
[
{
"sources": [
{
Expand All @@ -19,7 +19,37 @@
},
"metadata": {
"author": "Cohere",
"tags": ["General", "Big Context Length"]
"tags": [
"General",
"Big Context Length"
]
},
"engine": "cohere"
},
{
"sources": [
{
"url": "https://cohere.com"
}
],
"id": "command-r",
"object": "model",
"name": "Command R",
"version": "1.0",
"description": "Command R is an instruction-following conversational model that performs language tasks at a higher quality, more reliably, and with a longer context than previous models. It can be used for complex workflows like code generation, retrieval augmented generation (RAG), tool use, and agents.",
"format": "api",
"settings": {},
"parameters": {
"max_tokens": 128000,
"temperature": 0.7,
"stream": false
},
"metadata": {
"author": "Cohere",
"tags": [
"General",
"Big Context Length"
]
},
"engine": "cohere"
}
Expand Down