Spaces:
Sleeping
Sleeping
Update app.py
Browse filesupdated crawler
app.py
CHANGED
@@ -1,32 +1,49 @@
|
|
1 |
import gradio as gr
|
2 |
-
from huggingface_hub import InferenceClient
|
|
|
3 |
|
4 |
-
|
5 |
-
For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
|
6 |
-
"""
|
7 |
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
def respond(
|
11 |
-
message,
|
12 |
-
history: list[tuple[str, str]],
|
13 |
-
system_message,
|
14 |
-
max_tokens,
|
15 |
-
temperature,
|
16 |
top_p,
|
17 |
):
|
|
|
|
|
|
|
|
|
18 |
messages = [{"role": "system", "content": system_message}]
|
19 |
-
|
20 |
for val in history:
|
21 |
if val[0]:
|
22 |
messages.append({"role": "user", "content": val[0]})
|
23 |
if val[1]:
|
24 |
messages.append({"role": "assistant", "content": val[1]})
|
25 |
-
|
26 |
messages.append({"role": "user", "content": message})
|
27 |
-
|
28 |
response = ""
|
29 |
-
|
30 |
for message in client.chat_completion(
|
31 |
messages,
|
32 |
max_tokens=max_tokens,
|
@@ -35,18 +52,16 @@ def respond(
|
|
35 |
top_p=top_p,
|
36 |
):
|
37 |
token = message.choices[0].delta.content
|
38 |
-
|
39 |
response += token
|
40 |
yield response
|
41 |
|
42 |
-
|
43 |
-
"""
|
44 |
-
For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
|
45 |
-
"""
|
46 |
demo = gr.ChatInterface(
|
47 |
respond,
|
48 |
additional_inputs=[
|
49 |
-
gr.Textbox(
|
|
|
|
|
|
|
50 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
51 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
52 |
gr.Slider(
|
@@ -59,6 +74,5 @@ demo = gr.ChatInterface(
|
|
59 |
],
|
60 |
)
|
61 |
|
62 |
-
|
63 |
if __name__ == "__main__":
|
64 |
-
demo.launch()
|
|
|
1 |
import gradio as gr
|
2 |
+
from huggingface_hub import InferenceClient, hf_hub_download
|
3 |
+
import json
|
4 |
|
5 |
+
# Initialize the model client
|
|
|
|
|
6 |
client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
|
7 |
|
8 |
+
def load_website_data():
|
9 |
+
try:
|
10 |
+
# Download the latest crawl data
|
11 |
+
file_path = hf_hub_download(
|
12 |
+
repo_id="SmokeyBandit/SletcherSystems",
|
13 |
+
filename="data/latest_crawl.json",
|
14 |
+
repo_type="dataset"
|
15 |
+
)
|
16 |
+
with open(file_path, 'r') as f:
|
17 |
+
return json.load(f)
|
18 |
+
except Exception as e:
|
19 |
+
print(f"Error loading website data: {e}")
|
20 |
+
return None
|
21 |
+
|
22 |
+
WEBSITE_DATA = load_website_data()
|
23 |
|
24 |
def respond(
|
25 |
+
message,
|
26 |
+
history: list[tuple[str, str]],
|
27 |
+
system_message,
|
28 |
+
max_tokens,
|
29 |
+
temperature,
|
30 |
top_p,
|
31 |
):
|
32 |
+
# Augment system message with website data if available
|
33 |
+
if WEBSITE_DATA:
|
34 |
+
system_message = f"{system_message}\n\nWebsite Content:\n{WEBSITE_DATA['content'][:2000]}"
|
35 |
+
|
36 |
messages = [{"role": "system", "content": system_message}]
|
37 |
+
|
38 |
for val in history:
|
39 |
if val[0]:
|
40 |
messages.append({"role": "user", "content": val[0]})
|
41 |
if val[1]:
|
42 |
messages.append({"role": "assistant", "content": val[1]})
|
43 |
+
|
44 |
messages.append({"role": "user", "content": message})
|
45 |
+
|
46 |
response = ""
|
|
|
47 |
for message in client.chat_completion(
|
48 |
messages,
|
49 |
max_tokens=max_tokens,
|
|
|
52 |
top_p=top_p,
|
53 |
):
|
54 |
token = message.choices[0].delta.content
|
|
|
55 |
response += token
|
56 |
yield response
|
57 |
|
|
|
|
|
|
|
|
|
58 |
demo = gr.ChatInterface(
|
59 |
respond,
|
60 |
additional_inputs=[
|
61 |
+
gr.Textbox(
|
62 |
+
value="You are a friendly chatbot assistant for SletcherSystems. Answer questions based on the website content.",
|
63 |
+
label="System message"
|
64 |
+
),
|
65 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
66 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
67 |
gr.Slider(
|
|
|
74 |
],
|
75 |
)
|
76 |
|
|
|
77 |
if __name__ == "__main__":
|
78 |
+
demo.launch()
|