Spaces:
Runtime error
Runtime error
Commit
·
38da75e
1
Parent(s):
b649a34
Update app.py
Browse files
app.py
CHANGED
@@ -9,27 +9,15 @@ headers = {
|
|
9 |
'Content-Type': 'application/json',
|
10 |
}
|
11 |
|
12 |
-
system_message = "\
|
13 |
title = "Llama2 70B Chatbot"
|
14 |
description = """
|
15 |
-
|
16 |
-
|
17 |
-
🔎 For more details about the Llama 2 family of models and how to use them with `transformers`, take a look [at our blog post](https://huggingface.co/blog/llama2).
|
18 |
-
|
19 |
-
🔨 Looking for lighter chat model versions of Llama-v2?
|
20 |
-
- 🐇 Check out the [7B Chat model demo](https://huggingface.co/spaces/huggingface-projects/llama-2-7b-chat).
|
21 |
-
- 🦊 Check out the [13B Chat model demo](https://huggingface.co/spaces/huggingface-projects/llama-2-13b-chat).
|
22 |
-
|
23 |
-
Note: As a derivate work of [Llama-2-70b-chat](https://huggingface.co/meta-llama/Llama-2-70b-chat-hf) by Meta,
|
24 |
-
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).
|
25 |
"""
|
26 |
css = """.toast-wrap { display: none !important } """
|
27 |
examples=[
|
28 |
-
'Hello
|
29 |
-
|
30 |
-
'Explain the plot of Cinderella in a sentence.',
|
31 |
-
'How many hours does it take a man to eat a Helicopter?',
|
32 |
-
"Write a 100-word article on 'Benefits of Open-Source in AI research'",
|
33 |
]
|
34 |
|
35 |
|
|
|
9 |
'Content-Type': 'application/json',
|
10 |
}
|
11 |
|
12 |
+
system_message = "\nTesting by KelvinLo UD"
|
13 |
title = "Llama2 70B Chatbot"
|
14 |
description = """
|
15 |
+
Demo by Kelvin Lo, UD
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
"""
|
17 |
css = """.toast-wrap { display: none !important } """
|
18 |
examples=[
|
19 |
+
'Hello, Can you write me a javascripts program which print the time now?',
|
20 |
+
"Write a 100-word article on 'Software Development steps and making MVP'",
|
|
|
|
|
|
|
21 |
]
|
22 |
|
23 |
|