Update display names of models

This commit is contained in:
Rodrigo Nader 2024-03-28 18:19:25 -03:00
commit 57802f9632
5 changed files with 5 additions and 5 deletions

View file

@ -8,7 +8,7 @@ from langflow.field_typing import Text
class AzureChatOpenAIComponent(LCModelComponent):
display_name: str = "AzureOpenAI"
display_name: str = "Azure OpenAI"
description: str = "Generate text using LLM model from Azure OpenAI."
documentation: str = "https://python.langchain.com/docs/integrations/llms/azure_openai"
beta = False

View file

@ -8,7 +8,7 @@ from langflow.field_typing import Text
class QianfanChatEndpointComponent(LCModelComponent):
display_name: str = "QianfanChat"
display_name: str = "Qianfan"
description: str = (
"Generate text using Baidu Qianfan chat models. Get more detail from "
"https://python.langchain.com/docs/integrations/chat/baidu_qianfan_endpoint."

View file

@ -7,7 +7,7 @@ from langflow.field_typing import Text
class LlamaCppComponent(LCModelComponent):
display_name = "LlamaCpp"
display_name = "LLaMA C++"
description = "Generate text using llama.cpp model."
documentation = "https://python.langchain.com/docs/modules/model_io/models/llms/integrations/llamacpp"

View file

@ -13,7 +13,7 @@ from langflow.field_typing import Text
class ChatOllamaComponent(LCModelComponent):
display_name = "ChatOllama"
display_name = "Ollama"
description = "Generate text using Local LLM for chat with Ollama."
icon = "Ollama"

View file

@ -7,7 +7,7 @@ from langflow.field_typing import Text
class ChatVertexAIComponent(LCModelComponent):
display_name = "ChatVertexAI"
display_name = "Vertex AI"
description = "Generate text using Vertex AI Chat large language models API."
icon = "VertexAI"