broadfield-dev commited on
Commit
802a407
·
verified ·
1 Parent(s): 17352a7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +25 -4
app.py CHANGED
@@ -1,4 +1,25 @@
1
- #import ollama
2
- import os
3
- #os.system("ollama run hf.co/mlabonne/Meta-Llama-3.1-8B-Instruct-abliterated-GGUF")
4
- os.system("ollama serve")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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()