Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,3 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
-
|
|
|
|
1 |
+
|
2 |
+
|
3 |
+
#import gradio as gr
|
4 |
+
#gr.load("models/mistralai/Mistral-7B-Instruct-v0.3").launch()
|
5 |
+
|
6 |
+
import os
|
7 |
import gradio as gr
|
8 |
+
import requests
|
9 |
+
from dotenv import load_dotenv
|
10 |
+
|
11 |
+
# Load the environment variables from the .env file
|
12 |
+
load_dotenv()
|
13 |
+
|
14 |
+
API_URL = "https://api-inference.huggingface.co/models/mistralai/Mistral-7B-Instruct-v0.3"
|
15 |
+
headers = {"Authorization": f"Bearer {os.getenv('HFREAD')}"}
|
16 |
+
|
17 |
+
def query(payload):
|
18 |
+
response = requests.post(API_URL, headers=headers, json=payload)
|
19 |
+
return response.json()
|
20 |
+
|
21 |
+
def chatbot_response(input_text):
|
22 |
+
response = query({"inputs": input_text})
|
23 |
+
if 'error' in response:
|
24 |
+
return response['error']
|
25 |
+
return response.get('generated_text', 'No response generated.')
|
26 |
+
|
27 |
+
# Gradio interface
|
28 |
+
def main():
|
29 |
+
with gr.Blocks() as demo:
|
30 |
+
gr.Markdown("# Mistral-7B Chatbot")
|
31 |
+
|
32 |
+
with gr.Row():
|
33 |
+
input_box = gr.Textbox(label="Input Text", placeholder="Type your question here...", lines=2)
|
34 |
+
|
35 |
+
with gr.Row():
|
36 |
+
output_box = gr.Textbox(label="Response", placeholder="The response will appear here...", lines=5)
|
37 |
+
|
38 |
+
submit_button = gr.Button("Submit")
|
39 |
+
|
40 |
+
submit_button.click(fn=chatbot_response, inputs=input_box, outputs=output_box)
|
41 |
+
|
42 |
+
demo.launch()
|
43 |
|
44 |
+
if __name__ == "__main__":
|
45 |
+
main()
|