tpriyadata commited on
Commit
4e9632b
Β·
1 Parent(s): 9133ae1

fix: remove corrupted em-dash in settings.py for HuggingFace

Browse files
Files changed (1) hide show
  1. configs/settings.py +3 -4
configs/settings.py CHANGED
@@ -46,11 +46,10 @@ class Settings(BaseSettings):
46
 
47
  # ── Anthropic / Claude ────────────────────────────────────────
48
  anthropic_api_key: str = Field(
49
- ...,
50
- description="Anthropic API key β€” get from console.anthropic.com"
51
  )
52
  claude_model: str = Field(
53
- default="claude-,
54
  description="Claude model to use for generation"
55
  )
56
  max_tokens: int = Field(
@@ -59,7 +58,7 @@ class Settings(BaseSettings):
59
  le=4096,
60
  description="Max tokens for Claude response"
61
  )
62
- ── Pinecone ──────────────────────────────────────────────────
63
  pinecone_api_key: str = Field(
64
  ...,
65
  description="Pinecone API key β€” get from app.pinecone.io"
 
46
 
47
  # ── Anthropic / Claude ────────────────────────────────────────
48
  anthropic_api_key: str = Field(
49
+ description="Anthropic API key get from console.anthropic.com"
 
50
  )
51
  claude_model: str = Field(
52
+ default="claude-sonnet-4-20250514",
53
  description="Claude model to use for generation"
54
  )
55
  max_tokens: int = Field(
 
58
  le=4096,
59
  description="Max tokens for Claude response"
60
  )
61
+ #── Pinecone ──────────────────────────────────────────────────
62
  pinecone_api_key: str = Field(
63
  ...,
64
  description="Pinecone API key β€” get from app.pinecone.io"