cryogenic22 commited on
Commit
3462010
·
verified ·
1 Parent(s): c0670fe

Update learning_platform.py

Browse files
Files changed (1) hide show
  1. 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-4"
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: