hugforziio coraKong commited on
Commit
87736c1
1 Parent(s): 4823a74

Add gpt-3.5-turbo-16k (#3)

Browse files

- Add gpt-3.5-turbo-16k (368c3ea60b5d4d870a666e2b8c237a4815df95c5)


Co-authored-by: Cora Kong <[email protected]>

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -463,7 +463,7 @@ with gradio.Blocks(title="ChatGPT", css=css) as demo:
463
  with gradio.Box():
464
  gradio.Markdown("See https://platform.openai.com/docs/api-reference/chat/create .")
465
  chat_model = gradio.Dropdown(label="model", choices=[
466
- "gpt-3.5-turbo", "gpt-3.5-turbo-0301",
467
  "gpt-4", "gpt-4-0314", "gpt-4-32k", "gpt-4-32k-0314",
468
  ], value="gpt-3.5-turbo")
469
  chat_temperature = gradio.Slider(label="temperature", value=1, minimum=0, maximum=2)
 
463
  with gradio.Box():
464
  gradio.Markdown("See https://platform.openai.com/docs/api-reference/chat/create .")
465
  chat_model = gradio.Dropdown(label="model", choices=[
466
+ "gpt-3.5-turbo", "gpt-3.5-turbo-0301", "gpt-3.5-turbo-16k",
467
  "gpt-4", "gpt-4-0314", "gpt-4-32k", "gpt-4-32k-0314",
468
  ], value="gpt-3.5-turbo")
469
  chat_temperature = gradio.Slider(label="temperature", value=1, minimum=0, maximum=2)