-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix model JSON ; Prettier format (#27)
- Loading branch information
Showing
11 changed files
with
155 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
include: | ||
- path: | ||
- compose.cpu.yml | ||
- nvidia.yml | ||
- nvidia.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
{ | ||
"llm_models": [ | ||
{ | ||
"id": "openai/gpt-4o-mini", | ||
"name": "OpenAI GPT-4o Mini", | ||
"context_length": 128000, | ||
"languages": ["mul"], | ||
"capabilities": ["chat", "image"], | ||
"deployments": [ | ||
{ | ||
"litellm_id": "", | ||
"api_base": "", | ||
"provider": "openai" | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "anthropic/claude-3-haiku-20240307", | ||
"name": "Anthropic Claude 3 Haiku", | ||
"context_length": 200000, | ||
"languages": ["mul"], | ||
"capabilities": ["chat"], | ||
"deployments": [ | ||
{ | ||
"litellm_id": "", | ||
"api_base": "", | ||
"provider": "anthropic" | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "together_ai/meta-llama/Meta-Llama-3.1-8B-Instruct-Turbo", | ||
"name": "Together AI Meta Llama 3.1 (8B)", | ||
"context_length": 130000, | ||
"languages": ["mul"], | ||
"capabilities": ["chat"], | ||
"deployments": [ | ||
{ | ||
"litellm_id": "", | ||
"api_base": "", | ||
"provider": "together_ai" | ||
} | ||
] | ||
} | ||
], | ||
"embed_models": [ | ||
{ | ||
"id": "ellm/sentence-transformers/all-MiniLM-L6-v2", | ||
"name": "ELLM MiniLM L6 v2", | ||
"context_length": 512, | ||
"embedding_size": 384, | ||
"languages": ["mul"], | ||
"capabilities": ["embed"], | ||
"deployments": [ | ||
{ | ||
"litellm_id": "openai/sentence-transformers/all-MiniLM-L6-v2", | ||
"api_base": "http://infinity:6909", | ||
"provider": "ellm" | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "openai/text-embedding-3-small-512", | ||
"name": "OpenAI Text Embedding 3 Small (512-dim)", | ||
"context_length": 8192, | ||
"embedding_size": 512, | ||
"dimensions": 512, | ||
"languages": ["mul"], | ||
"capabilities": ["embed"], | ||
"deployments": [ | ||
{ | ||
"litellm_id": "text-embedding-3-small", | ||
"api_base": "", | ||
"provider": "openai" | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "cohere/embed-multilingual-v3.0", | ||
"name": "Cohere Embed Multilingual v3.0", | ||
"context_length": 512, | ||
"embedding_size": 1024, | ||
"languages": ["mul"], | ||
"capabilities": ["embed"], | ||
"deployments": [ | ||
{ | ||
"litellm_id": "embed-multilingual-v3.0", | ||
"api_base": "", | ||
"provider": "cohere" | ||
} | ||
] | ||
} | ||
], | ||
"rerank_models": [ | ||
{ | ||
"id": "ellm/cross-encoder/ms-marco-TinyBERT-L-2", | ||
"name": "ELLM TinyBERT L2", | ||
"context_length": 512, | ||
"languages": ["en"], | ||
"capabilities": ["rerank"], | ||
"deployments": [ | ||
{ | ||
"litellm_id": "", | ||
"api_base": "http://infinity:6909", | ||
"provider": "ellm" | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "cohere/rerank-multilingual-v3.0", | ||
"name": "Cohere Rerank Multilingual v3.0", | ||
"context_length": 512, | ||
"languages": ["mul"], | ||
"capabilities": ["rerank"], | ||
"deployments": [ | ||
{ | ||
"litellm_id": "", | ||
"api_base": "", | ||
"provider": "cohere" | ||
} | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters