segestic commited on
Commit
ce88bc0
·
verified ·
1 Parent(s): 713aecc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -3
app.py CHANGED
@@ -22,8 +22,7 @@ def interact_with_space(system_prompt, user_prompt, assistant_response, model="g
22
  user_prompt=user_prompt,
23
  assistant_response=assistant_response,
24
  model=model,
25
- api_name="/predict",
26
- hf_token=hf_token
27
  )
28
  return result
29
 
@@ -35,7 +34,16 @@ def create_ui():
35
  system_prompt_input = gr.Textbox(label="System Prompt", placeholder="Enter system prompt here", lines=2)
36
  user_prompt_input = gr.Textbox(label="User Prompt", placeholder="Enter user prompt here", lines=2)
37
  assistant_response_input = gr.Textbox(label="Assistant Response", placeholder="Enter assistant response here", lines=2)
38
- model_input = gr.Textbox(label="Model", value="gpt-4o") # Default model is gpt-4o
 
 
 
 
 
 
 
 
 
39
 
40
  # Output
41
  output = gr.Textbox(label="Response", interactive=False)
 
22
  user_prompt=user_prompt,
23
  assistant_response=assistant_response,
24
  model=model,
25
+ api_name="/predict"
 
26
  )
27
  return result
28
 
 
34
  system_prompt_input = gr.Textbox(label="System Prompt", placeholder="Enter system prompt here", lines=2)
35
  user_prompt_input = gr.Textbox(label="User Prompt", placeholder="Enter user prompt here", lines=2)
36
  assistant_response_input = gr.Textbox(label="Assistant Response", placeholder="Enter assistant response here", lines=2)
37
+ model_input = gr.Dropdown(
38
+ choices=[
39
+ "gpt-4o", "gpt-4o-mini", "gpt-4o-mini-audio-preview", "gpt-4o-mini-realtime-preview",
40
+ "o1", "o1-preview", "o1-mini", "gpt-4o-realtime-preview", "gpt-4o-audio-preview",
41
+ "gpt-4-turbo-preview", "gpt-3.5-turbo", "gpt-4"
42
+ ],
43
+ label="Model",
44
+ value="gpt-4o", # Default value is "gpt-4o"
45
+ info="Pricing: Different models have different costs for input and output tokens, per call price."
46
+ )
47
 
48
  # Output
49
  output = gr.Textbox(label="Response", interactive=False)