Spaces:
Runtime error
Runtime error
Update strings.py
Browse files- strings.py +8 -1
strings.py
CHANGED
@@ -4,4 +4,11 @@ ABSTRACT = """
|
|
4 |
This Space allows you to play with the one of the variant(7B) as part of the [LLaMA](https://ai.facebook.com/blog/large-language-model-llama-meta-ai/)(Large Language Model Meta AI) released by Meta AI.
|
5 |
|
6 |
LLaMA is a general purpose language model, so it behaves differently comparing to [ChatGPT](https://openai.com/blog/chatgpt/). Even though the UI or this Space application is in Chat-like form, the generated output will be the completion of the given prompt. Because of this, your prompts should appropriately guide what to be generated.
|
7 |
-
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
This Space allows you to play with the one of the variant(7B) as part of the [LLaMA](https://ai.facebook.com/blog/large-language-model-llama-meta-ai/)(Large Language Model Meta AI) released by Meta AI.
|
5 |
|
6 |
LLaMA is a general purpose language model, so it behaves differently comparing to [ChatGPT](https://openai.com/blog/chatgpt/). Even though the UI or this Space application is in Chat-like form, the generated output will be the completion of the given prompt. Because of this, your prompts should appropriately guide what to be generated.
|
7 |
+
"""
|
8 |
+
|
9 |
+
EXAMPLES = [
|
10 |
+
"Who are 5 people you would like to meet?",
|
11 |
+
"Send an email requesting that people use language models responsibly.",
|
12 |
+
"Write a theory to explain why cat never existed",
|
13 |
+
"write a story about a grain of sand as it watches millions of years go by"
|
14 |
+
]
|