Aqdas commited on
Commit
d98fba1
·
1 Parent(s): 56ddbfa

Update assistant_api.py

Browse files
Files changed (1) hide show
  1. assistant_api.py +1 -1
assistant_api.py CHANGED
@@ -1,7 +1,7 @@
1
  class MathTutor:
2
  def __init__(self):
3
  from openai import OpenAI
4
- self.client = OpenAI(api_key='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')
5
 
6
  self.my_assistant = self.client.beta.assistants.create(
7
  instructions="You are a personal math tutor. When asked a question, write and run Python code to answer the question.",
 
1
  class MathTutor:
2
  def __init__(self):
3
  from openai import OpenAI
4
+ self.client = OpenAI()
5
 
6
  self.my_assistant = self.client.beta.assistants.create(
7
  instructions="You are a personal math tutor. When asked a question, write and run Python code to answer the question.",