Skip to content

Commit 5f399a4

Browse files
authored
chore: fix typo (#13636)
1 parent 90cf6a9 commit 5f399a4

File tree

1 file changed

+1
-5
lines changed
  • llama-index-integrations/embeddings/llama-index-embeddings-upstage/llama_index/embeddings/upstage

1 file changed

+1
-5
lines changed

llama-index-integrations/embeddings/llama-index-embeddings-upstage/llama_index/embeddings/upstage/base.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,6 @@ def get_engine(model) -> Tuple[Any, Any]:
4545
class UpstageEmbedding(OpenAIEmbedding):
4646
"""
4747
Class for Upstage embeddings.
48-
49-
Args:
50-
model_name (str): Model for embedding.
51-
Defaults to "solar-1-mini-embedding".
5248
"""
5349

5450
additional_kwargs: Dict[str, Any] = Field(
@@ -57,7 +53,7 @@ class UpstageEmbedding(OpenAIEmbedding):
5753

5854
api_key: str = Field(description="The Upstage API key.")
5955
api_base: Optional[str] = Field(
60-
default=DEFAULT_UPSTAGE_API_BASE, description="The base URL for OpenAI API."
56+
default=DEFAULT_UPSTAGE_API_BASE, description="The base URL for Upstage API."
6157
)
6258
dimensions: Optional[int] = Field(
6359
None,

0 commit comments

Comments
 (0)