Skip to content

Commit

Permalink
Made embedding kwarg be explicitly default (#615)
Browse files Browse the repository at this point in the history
  • Loading branch information
whitead authored Oct 21, 2024
1 parent 81f8c5f commit 96d5fac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paperqa/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ class Settings(BaseSettings):
),
)
embedding: str = Field(
"text-embedding-3-small",
default="text-embedding-3-small",
description="Default embedding model for texts",
)
embedding_config: dict | None = Field(
Expand Down

0 comments on commit 96d5fac

Please sign in to comment.