Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,25 @@
|
|
1 |
-
|
2 |
-
import
|
3 |
-
|
4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import requests
|
3 |
+
|
4 |
+
# URL of the Ollama server running on port 8000
|
5 |
+
OLLAMA_SERVER_URL = "https://https://broadfield-dev-ollama-server.hf.space/api/predict/"
|
6 |
+
|
7 |
+
def chat_with_ollama(prompt):
|
8 |
+
# Send a request to the Ollama server
|
9 |
+
response = requests.post(OLLAMA_SERVER_URL, json={"data": [prompt]})
|
10 |
+
if response.status_code == 200:
|
11 |
+
return response.json()["data"][0]
|
12 |
+
else:
|
13 |
+
return "Error communicating with the Ollama server."
|
14 |
+
|
15 |
+
# Create a Gradio interface
|
16 |
+
iface = gr.Interface(
|
17 |
+
fn=chat_with_ollama,
|
18 |
+
inputs=gr.inputs.Textbox(label="Enter your prompt"),
|
19 |
+
outputs=gr.outputs.Textbox(label="Response from Ollama"),
|
20 |
+
title="Ollama Chatbot Client",
|
21 |
+
description="A Gradio client to interact with the Ollama server."
|
22 |
+
)
|
23 |
+
|
24 |
+
# Launch the Gradio interface
|
25 |
+
iface.launch()
|