Mahmoud Amiri
commited on
Commit
·
b2f2152
1
Parent(s):
dfcfb10
first commit
Browse files- app.py +22 -35
- requirements.txt +5 -0
app.py
CHANGED
@@ -12,51 +12,38 @@ def respond(
|
|
12 |
hf_token: gr.OAuthToken,
|
13 |
):
|
14 |
"""
|
15 |
-
|
|
|
16 |
"""
|
17 |
-
client = InferenceClient(
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
response
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
max_tokens=max_tokens,
|
30 |
-
stream=True,
|
31 |
temperature=temperature,
|
32 |
top_p=top_p,
|
33 |
-
|
34 |
-
|
35 |
-
token = ""
|
36 |
-
if len(choices) and choices[0].delta.content:
|
37 |
-
token = choices[0].delta.content
|
38 |
|
39 |
-
|
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 |
chatbot = gr.ChatInterface(
|
47 |
respond,
|
48 |
-
|
|
|
49 |
additional_inputs=[
|
50 |
-
gr.Textbox(value="
|
51 |
-
gr.Slider(minimum=
|
52 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
53 |
-
gr.Slider(
|
54 |
-
minimum=0.1,
|
55 |
-
maximum=1.0,
|
56 |
-
value=0.95,
|
57 |
-
step=0.05,
|
58 |
-
label="Top-p (nucleus sampling)",
|
59 |
-
),
|
60 |
],
|
61 |
)
|
62 |
|
|
|
12 |
hf_token: gr.OAuthToken,
|
13 |
):
|
14 |
"""
|
15 |
+
Uses the Hugging Face InferenceClient with a token (OAuth) to access the model.
|
16 |
+
This works with any text-to-text model like BART, T5, Pegasus, etc.
|
17 |
"""
|
18 |
+
client = InferenceClient(
|
19 |
+
token=hf_token.token,
|
20 |
+
model="Bocklitz-Lab/lit2vec-tldr-bart-model"
|
21 |
+
)
|
22 |
+
|
23 |
+
# Construct input text (optionally prepend system message)
|
24 |
+
full_input = f"{system_message.strip()}\n\n{message.strip()}"
|
25 |
+
|
26 |
+
# Generate full response in one call
|
27 |
+
response = client.text_generation(
|
28 |
+
full_input,
|
29 |
+
max_new_tokens=max_tokens,
|
|
|
|
|
30 |
temperature=temperature,
|
31 |
top_p=top_p,
|
32 |
+
stream=False # Set to True for token streaming
|
33 |
+
)
|
|
|
|
|
|
|
34 |
|
35 |
+
yield response
|
|
|
36 |
|
37 |
|
|
|
|
|
|
|
38 |
chatbot = gr.ChatInterface(
|
39 |
respond,
|
40 |
+
chatbot=gr.Chatbot(),
|
41 |
+
textbox=gr.Textbox(placeholder="Enter text to summarize...", container=False, scale=7),
|
42 |
additional_inputs=[
|
43 |
+
gr.Textbox(value="Summarize the following scientific text.", label="System message"),
|
44 |
+
gr.Slider(minimum=16, maximum=1024, value=256, step=8, label="Max new tokens"),
|
45 |
gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
|
46 |
+
gr.Slider(minimum=0.1, maximum=1.0, value=0.95, step=0.05, label="Top-p"),
|
|
|
|
|
|
|
|
|
|
|
|
|
47 |
],
|
48 |
)
|
49 |
|
requirements.txt
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
transformers
|
2 |
+
onnxruntime
|
3 |
+
huggingface_hub
|
4 |
+
gradio
|
5 |
+
numpy
|