Spaces:
Sleeping
Sleeping
Update learning_platform.py
Browse files- learning_platform.py +1 -1
learning_platform.py
CHANGED
|
@@ -36,7 +36,7 @@ class LearningPath:
|
|
| 36 |
class LLMService:
|
| 37 |
def __init__(self, api_key: str):
|
| 38 |
self.client = AsyncOpenAI(api_key=api_key)
|
| 39 |
-
self.model = "gpt-
|
| 40 |
|
| 41 |
async def generate(self, prompt: str, temperature: float = 1.0) -> str:
|
| 42 |
try:
|
|
|
|
| 36 |
class LLMService:
|
| 37 |
def __init__(self, api_key: str):
|
| 38 |
self.client = AsyncOpenAI(api_key=api_key)
|
| 39 |
+
self.model = "gpt-4o"
|
| 40 |
|
| 41 |
async def generate(self, prompt: str, temperature: float = 1.0) -> str:
|
| 42 |
try:
|