Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -1,53 +1,71 @@
|
|
|
|
1 |
import gradio as gr
|
2 |
from huggingface_hub import InferenceClient
|
3 |
|
4 |
|
5 |
def respond(
|
6 |
-
message,
|
7 |
history: list[dict[str, str]],
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
top_p,
|
12 |
hf_token: gr.OAuthToken,
|
13 |
):
|
14 |
"""
|
15 |
-
|
|
|
|
|
|
|
16 |
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
client = InferenceClient(token=hf_token.token, model="openai/gpt-oss-20b")
|
18 |
|
|
|
|
|
|
|
19 |
messages = [{"role": "system", "content": system_message}]
|
|
|
|
|
20 |
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
response = ""
|
26 |
-
|
27 |
-
for message in client.chat_completion(
|
28 |
messages,
|
29 |
max_tokens=max_tokens,
|
30 |
stream=True,
|
31 |
temperature=temperature,
|
32 |
top_p=top_p,
|
33 |
):
|
34 |
-
choices
|
|
|
35 |
token = ""
|
36 |
-
if
|
37 |
token = choices[0].delta.content
|
38 |
|
39 |
response += token
|
40 |
yield response
|
41 |
|
42 |
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
chatbot = gr.ChatInterface(
|
47 |
respond,
|
48 |
type="messages",
|
49 |
additional_inputs=[
|
50 |
-
|
|
|
51 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
52 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
53 |
gr.Slider(
|
@@ -55,7 +73,7 @@ chatbot = gr.ChatInterface(
|
|
55 |
maximum=1.0,
|
56 |
value=0.95,
|
57 |
step=0.05,
|
58 |
-
label="Top
|
59 |
),
|
60 |
],
|
61 |
)
|
|
|
1 |
+
import os
|
2 |
import gradio as gr
|
3 |
from huggingface_hub import InferenceClient
|
4 |
|
5 |
|
6 |
def respond(
|
7 |
+
message: str,
|
8 |
history: list[dict[str, str]],
|
9 |
+
max_tokens: int,
|
10 |
+
temperature: float,
|
11 |
+
top_p: float,
|
|
|
12 |
hf_token: gr.OAuthToken,
|
13 |
):
|
14 |
"""
|
15 |
+
Generate a response using the HuggingFace Inference API.
|
16 |
+
|
17 |
+
The system prompt is taken from the secret **prec_chat** (defined in the
|
18 |
+
Gradio secrets file). Users can no longer edit the system prompt.
|
19 |
"""
|
20 |
+
# ----------------------------------------------------------------------
|
21 |
+
# 1️⃣ Load the system prompt from the secret.
|
22 |
+
# ----------------------------------------------------------------------
|
23 |
+
# If the secret is missing we fall back to a generic prompt so the app
|
24 |
+
# still works locally.
|
25 |
+
system_message = os.getenv("prec_chat", "You are a helpful assistant.")
|
26 |
+
|
27 |
+
# ----------------------------------------------------------------------
|
28 |
+
# 2️⃣ Initialise the HF inference client.
|
29 |
+
# ----------------------------------------------------------------------
|
30 |
client = InferenceClient(token=hf_token.token, model="openai/gpt-oss-20b")
|
31 |
|
32 |
+
# ----------------------------------------------------------------------
|
33 |
+
# 3️⃣ Build the message list for the chat completion endpoint.
|
34 |
+
# ----------------------------------------------------------------------
|
35 |
messages = [{"role": "system", "content": system_message}]
|
36 |
+
messages.extend(history) # previous conversation
|
37 |
+
messages.append({"role": "user", "content": message}) # current query
|
38 |
|
39 |
+
# ----------------------------------------------------------------------
|
40 |
+
# 4️⃣ Stream the response back to the UI.
|
41 |
+
# ----------------------------------------------------------------------
|
|
|
42 |
response = ""
|
43 |
+
for chunk in client.chat_completion(
|
|
|
44 |
messages,
|
45 |
max_tokens=max_tokens,
|
46 |
stream=True,
|
47 |
temperature=temperature,
|
48 |
top_p=top_p,
|
49 |
):
|
50 |
+
# The API returns a list of choices – we only care about the first one.
|
51 |
+
choices = chunk.choices
|
52 |
token = ""
|
53 |
+
if choices and choices[0].delta.content:
|
54 |
token = choices[0].delta.content
|
55 |
|
56 |
response += token
|
57 |
yield response
|
58 |
|
59 |
|
60 |
+
# --------------------------------------------------------------------------
|
61 |
+
# UI definition – the system‑prompt textbox has been removed.
|
62 |
+
# --------------------------------------------------------------------------
|
63 |
chatbot = gr.ChatInterface(
|
64 |
respond,
|
65 |
type="messages",
|
66 |
additional_inputs=[
|
67 |
+
# System prompt is now fixed via the secret, so we only expose the
|
68 |
+
# generation parameters.
|
69 |
gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
|
70 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
71 |
gr.Slider(
|
|
|
73 |
maximum=1.0,
|
74 |
value=0.95,
|
75 |
step=0.05,
|
76 |
+
label="Top‑p (nucleus sampling)",
|
77 |
),
|
78 |
],
|
79 |
)
|