Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -10,27 +10,17 @@ headers = {"Authorization": f"Bearer {HF_TOKEN}"}
|
|
10 |
client = AsyncInferenceClient(api_url)
|
11 |
|
12 |
|
13 |
-
system_message = "\nYou are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe.
|
14 |
-
title = "
|
15 |
description = """
|
16 |
-
This
|
17 |
|
18 |
-
|
19 |
-
|
20 |
-
🔨 Looking for lighter chat model versions of Llama-v2?
|
21 |
-
- 🐇 Check out the [7B Chat model demo](https://huggingface.co/spaces/huggingface-projects/llama-2-7b-chat).
|
22 |
-
- 🦊 Check out the [13B Chat model demo](https://huggingface.co/spaces/huggingface-projects/llama-2-13b-chat).
|
23 |
-
|
24 |
-
Note: As a derivate work of [Llama-2-70b-chat](https://huggingface.co/meta-llama/Llama-2-70b-chat-hf) by Meta,
|
25 |
-
this demo is governed by the original [license](https://huggingface.co/spaces/ysharma/Explore_llamav2_with_TGI/blob/main/LICENSE.txt) and [acceptable use policy](https://huggingface.co/spaces/ysharma/Explore_llamav2_with_TGI/blob/main/USE_POLICY.md).
|
26 |
"""
|
27 |
css = """.toast-wrap { display: none !important } """
|
28 |
examples=[
|
29 |
-
['
|
30 |
-
[
|
31 |
-
['Explain the plot of Cinderella in a sentence.'],
|
32 |
-
['How many hours does it take a man to eat a Helicopter?'],
|
33 |
-
["Write a 100-word article on 'Benefits of Open-Source in AI research'"],
|
34 |
]
|
35 |
|
36 |
|
@@ -194,9 +184,9 @@ with gr.Blocks() as demo:
|
|
194 |
chatbot_stream.like(vote, None, None)
|
195 |
chat_interface_stream.render()
|
196 |
|
197 |
-
with gr.Tab("Batch"):
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
|
202 |
demo.queue(max_size=100).launch()
|
|
|
10 |
client = AsyncInferenceClient(api_url)
|
11 |
|
12 |
|
13 |
+
system_message = "\nYou are a helpful, respectful and honest Excel formula assistant. Always answer as helpfully as possible, while being safe."
|
14 |
+
title = "Excel Bot"
|
15 |
description = """
|
16 |
+
This is an Excel Assistant AI.
|
17 |
|
18 |
+
Note: Derivate work of [Llama-2-70b-chat](https://huggingface.co/meta-llama/Llama-2-70b-chat-hf) by Meta.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"""
|
20 |
css = """.toast-wrap { display: none !important } """
|
21 |
examples=[
|
22 |
+
['Write an Excel formula to sum number in a row.'],
|
23 |
+
["Write an Excel formula to generate a random number."],
|
|
|
|
|
|
|
24 |
]
|
25 |
|
26 |
|
|
|
184 |
chatbot_stream.like(vote, None, None)
|
185 |
chat_interface_stream.render()
|
186 |
|
187 |
+
# with gr.Tab("Batch"):
|
188 |
+
# # non-streaming chatbot
|
189 |
+
# chatbot_batch.like(vote, None, None)
|
190 |
+
# chat_interface_batch.render()
|
191 |
|
192 |
demo.queue(max_size=100).launch()
|