Update app.py
Browse files
app.py
CHANGED
@@ -81,7 +81,7 @@ if openai_api_key:
|
|
81 |
|
82 |
# Get the GPT-4 response
|
83 |
response = openai.ChatCompletion.create(
|
84 |
-
model="gpt-
|
85 |
messages=[{"role": "user", "content": modified_prompt}]
|
86 |
)
|
87 |
|
|
|
81 |
|
82 |
# Get the GPT-4 response
|
83 |
response = openai.ChatCompletion.create(
|
84 |
+
model="gpt-4o-mini", # Update to GPT-4 (or your desired model)
|
85 |
messages=[{"role": "user", "content": modified_prompt}]
|
86 |
)
|
87 |
|