Datawithsarah commited on
Commit
b5cc0f9
·
1 Parent(s): 426c595

updates on app file

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -18,7 +18,7 @@ DEFAULT_API_URL = "https://agents-course-unit4-scoring.hf.space"
18
 
19
  # --- Basic Agent Definition ---
20
  # ----- THIS IS WHERE YOU CAN BUILD WHAT YOU WANT ------
21
- class ClaudeServerModel(BaseModel):
22
  def __init__(self, api_key: str, model_id: str = "claude-3-opus-20240229", temperature: float = 0.0):
23
  self.api_key = api_key
24
  self.model_id = model_id
 
18
 
19
  # --- Basic Agent Definition ---
20
  # ----- THIS IS WHERE YOU CAN BUILD WHAT YOU WANT ------
21
+ class ClaudeServerModel:
22
  def __init__(self, api_key: str, model_id: str = "claude-3-opus-20240229", temperature: float = 0.0):
23
  self.api_key = api_key
24
  self.model_id = model_id