We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19dbf7e commit 7dae97eCopy full SHA for 7dae97e
airbyte_cdk/destinations/vector_db_based/embedder.py
@@ -140,7 +140,9 @@ def __init__(self, config: CohereEmbeddingConfigModel):
140
super().__init__()
141
# Client is set internally
142
self.embeddings = CohereEmbeddings(
143
- cohere_api_key=config.cohere_key, model="embed-english-light-v2.0"
+ cohere_api_key=config.cohere_key,
144
+ model="embed-english-light-v2.0",
145
+ user_agent="airbyte-cdk",
146
) # type: ignore
147
148
def check(self) -> Optional[str]:
0 commit comments