We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b780f77 + ffa46c6 commit 4c7f2d0Copy full SHA for 4c7f2d0
core/cat/factory/embedder.py
@@ -58,13 +58,15 @@ class EmbedderDumbConfig(EmbedderSettings):
58
class EmbedderOpenAICompatibleConfig(EmbedderSettings):
59
oai_comp_api_key: str = None
60
url: str
61
+ model: str
62
_pyclass: Type = CustomOpenAIEmbeddings
63
64
model_config = ConfigDict(
65
json_schema_extra={
66
"humanReadableName": "OpenAI-compatible API embedder",
67
"description": "Configuration for OpenAI-compatible API embeddings",
68
"link": "",
69
+ "model": "",
70
}
71
)
72
0 commit comments