Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class AgentQL(Component):
inputs = [
SecretStrInput(
name="api_key",
display_name="API Key",
display_name="AgentQL API Key",
required=True,
password=True,
info="Your AgentQL API key from dev.agentql.com",
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/langflow/components/azure/azure_openai.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class AzureChatOpenAIComponent(LCModelComponent):
required=True,
),
MessageTextInput(name="azure_deployment", display_name="Deployment Name", required=True),
SecretStrInput(name="api_key", display_name="API Key", required=True),
SecretStrInput(name="api_key", display_name="Azure Chat OpenAI API Key", required=True),
DropdownInput(
name="api_version",
display_name="API Version",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class AzureOpenAIEmbeddingsComponent(LCModelComponent):
),
SecretStrInput(
name="api_key",
display_name="API Key",
display_name="Azure OpenAI API Key",
required=True,
),
IntInput(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ClickhouseVectorStoreComponent(LCVectorStoreComponent):
StrInput(name="database", display_name="database", required=True),
StrInput(name="table", display_name="Table name", required=True),
StrInput(name="username", display_name="The ClickHouse user name.", required=True),
SecretStrInput(name="password", display_name="The password for username.", required=True),
SecretStrInput(name="password", display_name="Clickhouse Password", required=True),
DropdownInput(
name="index_type",
display_name="index_type",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class ConfluenceComponent(Component):
),
SecretStrInput(
name="api_key",
display_name="API Key",
display_name="Confluence API Key",
required=True,
info="Atlassian Key. Create at: https://id.atlassian.com/manage-profile/security/api-tokens",
),
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/langflow/components/datastax/astra_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class AstraDBChatMemory(LCChatMemoryComponent):
),
SecretStrInput(
name="api_endpoint",
display_name="API Endpoint",
display_name="Astra DB API Endpoint",
info="API endpoint URL for the Astra DB service.",
value="ASTRA_DB_API_ENDPOINT",
required=True,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class ChatLiteLLMModelComponent(LCModelComponent):
),
SecretStrInput(
name="api_key",
display_name="API Key",
display_name="Chat LiteLLM API Key",
advanced=False,
required=False,
),
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/langflow/components/deactivated/metal.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class MetalRetrieverComponent(CustomComponent):
inputs = [
SecretStrInput(
name="api_key",
display_name="API Key",
display_name="Metal Retriever API Key",
required=True,
),
SecretStrInput(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class ElasticsearchVectorStoreComponent(LCVectorStoreComponent):
),
SecretStrInput(
name="password",
display_name="Password",
display_name="Elasticsearch Password",
value="",
advanced=False,
info=(
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/langflow/components/elastic/opensearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class OpenSearchVectorStoreComponent(LCVectorStoreComponent):
),
SecretStrInput(
name="password",
display_name="Password",
display_name="OpenSearch Password",
value="admin",
advanced=True,
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class FirecrawlCrawlApi(Component):
inputs = [
SecretStrInput(
name="api_key",
display_name="API Key",
display_name="Firecrawl API Key",
required=True,
password=True,
info="The API key to use Firecrawl API.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class FirecrawlExtractApi(Component):
inputs = [
SecretStrInput(
name="api_key",
display_name="API Key",
display_name="Firecrawl API Key",
required=True,
password=True,
info="The API key to use Firecrawl API.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class FirecrawlMapApi(Component):
inputs = [
SecretStrInput(
name="api_key",
display_name="API Key",
display_name="Firecrawl API Key",
required=True,
password=True,
info="The API key to use Firecrawl API.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class FirecrawlScrapeApi(Component):
inputs = [
SecretStrInput(
name="api_key",
display_name="API Key",
display_name="Firecrawl API Key",
required=True,
password=True,
info="The API key to use Firecrawl API.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class GoogleGenerativeAIEmbeddingsComponent(Component):
name = "Google Generative AI Embeddings"

inputs = [
SecretStrInput(name="api_key", display_name="API Key", required=True),
SecretStrInput(name="api_key", display_name="Google Generative AI API Key", required=True),
MessageTextInput(name="model_name", display_name="Model Name", value="models/text-embedding-004"),
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@ class HuggingFaceEndpointsComponent(LCModelComponent):
advanced=True,
info="The task to call the model with. Should be a task that returns `generated_text` or `summary_text`.",
),
SecretStrInput(name="huggingfacehub_api_token", display_name="API Token", password=True, required=True),
SecretStrInput(
name="huggingfacehub_api_token", display_name="HuggingFace HubAPI Token", password=True, required=True
),
DictInput(name="model_kwargs", display_name="Model Keyword Arguments", advanced=True),
IntInput(name="retry_attempts", display_name="Retry Attempts", value=1, advanced=True),
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class HuggingFaceInferenceAPIEmbeddingsComponent(LCEmbeddingsModel):
inputs = [
SecretStrInput(
name="api_key",
display_name="API Key",
display_name="HuggingFace API Key",
advanced=False,
info="Required for non-local inference endpoints. Local inference does not require an API Key.",
),
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/langflow/components/ibm/watsonx.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class WatsonxAIComponent(LCModelComponent):
),
SecretStrInput(
name="api_key",
display_name="API Key",
display_name="Watsonx API Key",
info="The API Key to use for the model.",
required=True,
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class WatsonxEmbeddingsComponent(LCEmbeddingsModel):
),
SecretStrInput(
name="api_key",
display_name="API Key",
display_name="Watsonx API Key",
info="The API Key to use for the model.",
required=True,
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class CombinatorialReasonerComponent(Component):
),
SecretStrInput(
name="password",
display_name="Password",
display_name="Combinatorial Reasoner Password",
info="Password to authenticate access to Icosa CR API.",
advanced=False,
required=True,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class LangChainHubPromptComponent(Component):
inputs = [
SecretStrInput(
name="langchain_api_key",
display_name="Your LangChain API Key",
display_name="LangChain API Key",
info="The LangChain API Key to use.",
required=True,
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class LangWatchComponent(Component):
),
SecretStrInput(
name="api_key",
display_name="API Key",
display_name="LangWatch API Key",
required=True,
info="Enter your LangWatch API key.",
),
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/langflow/components/milvus/milvus.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class MilvusVectorStoreComponent(LCVectorStoreComponent):
),
SecretStrInput(
name="password",
display_name="Token",
display_name="Milvus Token",
value="",
info="Ignore this field if no token is required to make connection.",
),
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/langflow/components/olivya/olivya.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class OlivyaComponent(Component):
inputs = [
MessageTextInput(
name="api_key",
display_name="API Key",
display_name="Olivya API Key",
info="Your API key for authentication",
value="",
required=True,
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/langflow/components/qdrant/qdrant.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class QdrantVectorStoreComponent(LCVectorStoreComponent):
StrInput(name="host", display_name="Host", value="localhost", advanced=True),
IntInput(name="port", display_name="Port", value=6333, advanced=True),
IntInput(name="grpc_port", display_name="gRPC Port", value=6334, advanced=True),
SecretStrInput(name="api_key", display_name="API Key", advanced=True),
SecretStrInput(name="api_key", display_name="Qdrant API Key", advanced=True),
StrInput(name="prefix", display_name="Prefix", advanced=True),
IntInput(name="timeout", display_name="Timeout", advanced=True),
StrInput(name="path", display_name="Path", advanced=True),
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/langflow/components/redis/redis_chat.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class RedisIndexChatMemory(LCChatMemoryComponent):
name="username", display_name="Username", value="", info="The Redis user name.", advanced=True
),
SecretStrInput(
name="password", display_name="Password", value="", info="The password for username.", advanced=True
name="password", display_name="Redis Password", value="", info="The password for username.", advanced=True
),
StrInput(name="key_prefix", display_name="Key prefix", info="Key prefix.", advanced=True),
MessageTextInput(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class TwelveLabsVideoEmbeddingsComponent(LCEmbeddingsModel):
icon = "TwelveLabs"
documentation = "https://github.com/twelvelabs-io/twelvelabs-developer-experience/blob/main/integrations/Langflow/TWELVE_LABS_COMPONENTS_README.md"
inputs = [
SecretStrInput(name="api_key", display_name="API Key", required=True),
SecretStrInput(name="api_key", display_name="TwelveLabs API Key", required=True),
DropdownInput(
name="model_name",
display_name="Model",
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/langflow/components/upstash/upstash.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class UpstashVectorStoreComponent(LCVectorStoreComponent):
),
SecretStrInput(
name="index_token",
display_name="Index Token",
display_name="Upstash Index Token",
info="The token for the Upstash index.",
required=True,
),
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/langflow/components/weaviate/weaviate.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class WeaviateVectorStoreComponent(LCVectorStoreComponent):

inputs = [
StrInput(name="url", display_name="Weaviate URL", value="http://localhost:8080", required=True),
SecretStrInput(name="api_key", display_name="API Key", required=False),
SecretStrInput(name="api_key", display_name="Weaviate API Key", required=False),
StrInput(
name="index_name",
display_name="Index Name",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class WolframAlphaAPIComponent(LCToolComponent):
MultilineInput(
name="input_value", display_name="Input Query", info="Example query: 'What is the population of France?'"
),
SecretStrInput(name="app_id", display_name="App ID", required=True),
SecretStrInput(name="app_id", display_name="WolframAlpha App ID", required=True),
]

icon = "WolframAlphaAPI"
Expand Down
2 changes: 1 addition & 1 deletion src/backend/base/langflow/components/zep/zep.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ZepChatMemory(LCChatMemoryComponent):

inputs = [
MessageTextInput(name="url", display_name="Zep URL", info="URL of the Zep instance."),
SecretStrInput(name="api_key", display_name="API Key", info="API Key for the Zep instance."),
SecretStrInput(name="api_key", display_name="Zep API Key", info="API Key for the Zep instance."),
DropdownInput(
name="api_base_path",
display_name="API Base Path",
Expand Down
Loading
Loading