Daniela-C commited on
Commit
cf41610
·
verified ·
1 Parent(s): 9f04b0b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -12
app.py CHANGED
@@ -11,17 +11,7 @@ MAX_MAX_NEW_TOKENS = 2048
11
  DEFAULT_MAX_NEW_TOKENS = 1024
12
  MAX_INPUT_TOKEN_LENGTH = int(os.getenv("MAX_INPUT_TOKEN_LENGTH", "4096"))
13
 
14
- DESCRIPTION = """\
15
- # Llama-2 13B Chat
16
 
17
- This Space demonstrates model [Llama-2-13b-chat](https://huggingface.co/meta-llama/Llama-2-13b-chat) by Meta, a Llama 2 model with 13B parameters fine-tuned for chat instructions. Feel free to play with it, or duplicate to run generations without a queue! If you want to run your own service, you can also [deploy the model on Inference Endpoints](https://huggingface.co/inference-endpoints).
18
-
19
- 🔎 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).
20
-
21
- 🔨 Looking for an even more powerful model? Check out the large [**70B** model demo](https://huggingface.co/spaces/ysharma/Explore_llamav2_with_TGI).
22
- 🐇 For a smaller model that you can run on many GPUs, check our [7B model demo](https://huggingface.co/spaces/huggingface-projects/llama-2-7b-chat).
23
-
24
- """
25
 
26
  LICENSE = """
27
  <p/>
@@ -129,11 +119,13 @@ chat_interface = gr.ChatInterface(
129
  ],
130
  stop_btn=None,
131
  examples=[
132
- ["Hello there! How are you doing?"],
133
  ["Can you explain briefly to me what is a Life of William Shakespeare book?"],
134
  ["Explain the plot of Romeu and Juliet in a sentence."],
135
- ["How many Shakespeare Sonnets exist?"],
136
  ["Write a 100-word article on 'Shakespeare education'"],
 
 
137
  ],
138
  )
139
 
 
11
  DEFAULT_MAX_NEW_TOKENS = 1024
12
  MAX_INPUT_TOKEN_LENGTH = int(os.getenv("MAX_INPUT_TOKEN_LENGTH", "4096"))
13
 
 
 
14
 
 
 
 
 
 
 
 
 
15
 
16
  LICENSE = """
17
  <p/>
 
119
  ],
120
  stop_btn=None,
121
  examples=[
122
+ ["Write a 100-word article on 'The Time Machine an Invention by H. G. Wells Book'"],
123
  ["Can you explain briefly to me what is a Life of William Shakespeare book?"],
124
  ["Explain the plot of Romeu and Juliet in a sentence."],
125
+ ["How many Shakespeare Sonnets does exist?"],
126
  ["Write a 100-word article on 'Shakespeare education'"],
127
+ ["Write a 100-word article on 'Off All Things BY ROBERT C. BENCHLEY Book'"],
128
+
129
  ],
130
  )
131