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

link key to all LLM schemas #426

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions core/cat/factory/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ class Config:
"A dumb LLM just telling that the Cat is not configured. "
"There will be a nice LLM here "
"once consumer hardware allows it.",
"link": ""
}


Expand Down Expand Up @@ -73,6 +74,7 @@ class Config:
schema_extra = {
"humanReadableName": "OpenAI ChatGPT",
"description": "Chat model from OpenAI",
"link": "https://platform.openai.com/docs/models/overview"
}


Expand All @@ -87,6 +89,7 @@ class Config:
"description":
"OpenAI GPT-3. More expensive but "
"also more flexible than ChatGPT.",
"link": "https://platform.openai.com/docs/models/overview"
}


Expand All @@ -107,6 +110,7 @@ class Config:
schema_extra = {
"humanReadableName": "Azure OpenAI Chat Models",
"description": "Chat model from Azure OpenAI",
"link": "https://azure.microsoft.com/en-us/products/ai-services/openai-service"
}


Expand All @@ -128,6 +132,7 @@ class Config:
schema_extra = {
"humanReadableName": "Azure OpenAI Completion models",
"description": "Configuration for Cognitive Services Azure OpenAI",
"link": "https://azure.microsoft.com/en-us/products/ai-services/openai-service"
}


Expand All @@ -140,6 +145,7 @@ class Config:
schema_extra = {
"humanReadableName": "Cohere",
"description": "Configuration for Cohere language model",
"link": "https://docs.cohere.com/docs/models"
}


Expand All @@ -158,6 +164,7 @@ class Config:
schema_extra = {
"humanReadableName": "HuggingFace TextGen Inference",
"description": "Configuration for HuggingFace TextGen Inference",
"link": "https://huggingface.co/text-generation-inference"
}


Expand All @@ -175,6 +182,7 @@ class Config:
schema_extra = {
"humanReadableName": "HuggingFace Hub",
"description": "Configuration for HuggingFace Hub language models",
"link": "https://huggingface.co/models"
}


Expand All @@ -189,6 +197,7 @@ class Config:
"humanReadableName": "HuggingFace Endpoint",
"description":
"Configuration for HuggingFace Endpoint language models",
"link": "https://huggingface.co/inference-endpoints"
}


Expand All @@ -201,6 +210,7 @@ class Config:
schema_extra = {
"humanReadableName": "Anthropic",
"description": "Configuration for Anthropic language model",
"link": "https://www.anthropic.com/product"
}


Expand All @@ -213,6 +223,7 @@ class Config:
schema_extra = {
"humanReadableName": "Google PaLM",
"description": "Configuration for Google PaLM language model",
"link": "https://developers.generativeai.google/models/language"
}


Expand Down
Loading