Skip to content

Commit

Permalink
fix: Component name Corrected (#3577)
Browse files Browse the repository at this point in the history
Component name Corrected

Error in name of the component.
  • Loading branch information
edwinjosechittilappilly authored Aug 27, 2024
1 parent c92bea6 commit 3222153
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@


class GoogleGenerativeAIEmbeddingsComponent(Component):
display_name = "Custom Component"
description = "Use as a template to create your own component."
documentation: str = "http://docs.langflow.org/components/custom"
icon = "custom_components"
name = "CustomComponent"
display_name = "Google GenerativeAI Embeddings"
description = "Connect to Google's generative AI embeddings service using the GoogleGenerativeAIEmbeddings class, found in the langchain-google-genai package."
documentation: str = "https://python.langchain.com/v0.2/docs/integrations/text_embedding/google_generative_ai/"
icon = "Google"
name = "Google GenerativeAI Embeddings"

inputs = [
SecretStrInput(name="api_key", display_name="API Key"),
Expand Down

0 comments on commit 3222153

Please sign in to comment.