broadfield-dev commited on
Commit
46f8fda
·
verified ·
1 Parent(s): dc22d3e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -15,8 +15,8 @@ def chat_with_ollama(prompt):
15
  # Create a Gradio interface
16
  iface = gr.Interface(
17
  fn=chat_with_ollama,
18
- input=gr.inputs.Textbox(label="Enter your prompt"),
19
- output=gr.outputs.Textbox(label="Response from Ollama"),
20
  title="Ollama Chatbot Client",
21
  description="A Gradio client to interact with the Ollama server."
22
  )
 
15
  # Create a Gradio interface
16
  iface = gr.Interface(
17
  fn=chat_with_ollama,
18
+ inputs=gr.Textbox(label="Enter your prompt"),
19
+ output=gr.Textbox(label="Response from Ollama"),
20
  title="Ollama Chatbot Client",
21
  description="A Gradio client to interact with the Ollama server."
22
  )