debug
Browse files
app.py
CHANGED
|
@@ -196,10 +196,10 @@ def main():
|
|
| 196 |
if llm_name == 'gpt-3.5-turbo':
|
| 197 |
max_output_tokens = 4096
|
| 198 |
context_window = 16385
|
| 199 |
-
elif llm_name == 'gpt-4'
|
| 200 |
max_output_tokens = 8192
|
| 201 |
context_window = 8192
|
| 202 |
-
elif llm_name == 'gpt-4-turbo'
|
| 203 |
max_output_tokens = 4096
|
| 204 |
context_window = 128000
|
| 205 |
elif llm_name == 'gpt-4o':
|
|
|
|
| 196 |
if llm_name == 'gpt-3.5-turbo':
|
| 197 |
max_output_tokens = 4096
|
| 198 |
context_window = 16385
|
| 199 |
+
elif llm_name == 'gpt-4':
|
| 200 |
max_output_tokens = 8192
|
| 201 |
context_window = 8192
|
| 202 |
+
elif llm_name == 'gpt-4-turbo':
|
| 203 |
max_output_tokens = 4096
|
| 204 |
context_window = 128000
|
| 205 |
elif llm_name == 'gpt-4o':
|