Commit
·
b5cc0f9
1
Parent(s):
426c595
updates on app file
Browse files
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
|
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
|