Update app.py
Browse files
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-
|
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.")
|