Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -6,7 +6,7 @@ client = OpenAI(api_key=os.environ["Secret"])
|
|
6 |
|
7 |
def gpt3(texts):
|
8 |
response = client.chat.completions.create(
|
9 |
-
model="gpt-
|
10 |
messages=[{"role": "user", "content": texts}],
|
11 |
temperature=0,
|
12 |
max_tokens=750,
|
|
|
6 |
|
7 |
def gpt3(texts):
|
8 |
response = client.chat.completions.create(
|
9 |
+
model="gpt-4",
|
10 |
messages=[{"role": "user", "content": texts}],
|
11 |
temperature=0,
|
12 |
max_tokens=750,
|