thrag commited on
Commit
2e369c9
1 Parent(s): 78a4b66

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -231,7 +231,7 @@ with gr.Blocks() as demo:
231
  headerMsg += "not have access to a given recipe then the LLM will not be able to pull information from it. "
232
  gr.Markdown(headerMsg)
233
 
234
- modelDD = gr.Dropdown(['gpt-3.5-turbo', 'gpt-4'], value='gpt-3.5-turbo', label="Model to use")
235
  openAIKey = gr.Textbox(placeholder="Paste your OpenAI API Key Here", label="OpenAI API Key")
236
  inp = gr.Textbox(placeholder="Type your question here...", label="Question")
237
  accessCG = gr.CheckboxGroup(["Chicken recipes", "Dessert recipes"], value=["Chicken recipes", "Dessert recipes"], label="Access List", info="The recipes below are what you have access to, deselect ones and ask specific questions to see how LLM cannot access them.")
 
231
  headerMsg += "not have access to a given recipe then the LLM will not be able to pull information from it. "
232
  gr.Markdown(headerMsg)
233
 
234
+ modelDD = gr.Dropdown(['gpt-3.5-turbo', 'gpt-4'], value='gpt-4', label="Model to use")
235
  openAIKey = gr.Textbox(placeholder="Paste your OpenAI API Key Here", label="OpenAI API Key")
236
  inp = gr.Textbox(placeholder="Type your question here...", label="Question")
237
  accessCG = gr.CheckboxGroup(["Chicken recipes", "Dessert recipes"], value=["Chicken recipes", "Dessert recipes"], label="Access List", info="The recipes below are what you have access to, deselect ones and ask specific questions to see how LLM cannot access them.")