Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -192,10 +192,15 @@ with gr.Blocks(css=MODEL_SELECTION_CSS, theme='gradio/soft') as demo:
|
|
192 |
"last conversation, • clean the chat history, • dynamic kick-starting prompt templates, • adjusting text generation parameters, "
|
193 |
"• inspecting the actual prompt that the model sees. The underlying Large Language Model is the [Meta AI](https://ai.meta.com/)'s "
|
194 |
"[LLaMA2-70B](https://huggingface.co/meta-llama/Llama-2-70b-chat-hf) which is hosted as [Hugging Face Inference API](https://huggingface.co/inference-api), "
|
195 |
-
"and [Text Generation Inference](https://github.com/huggingface/text-generation-inference) is the underlying serving framework. "
|
196 |
-
"\n***NOTE:*** If you are subscribing [PRO](https://huggingface.co/pricing#pro), you can simply duplicate this space and use your "
|
197 |
-
"Hugging Face Access Token to run the same application. Just add `HF_TOKEN` secret with the Token value accorindg to [this guide](https://huggingface.co/docs/hub/spaces-overview#managing-secrets-and-environment-variables)",
|
198 |
elem_classes=["center"])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
199 |
|
200 |
with gr.Row():
|
201 |
with gr.Column(scale=1, min_width=180):
|
|
|
192 |
"last conversation, • clean the chat history, • dynamic kick-starting prompt templates, • adjusting text generation parameters, "
|
193 |
"• inspecting the actual prompt that the model sees. The underlying Large Language Model is the [Meta AI](https://ai.meta.com/)'s "
|
194 |
"[LLaMA2-70B](https://huggingface.co/meta-llama/Llama-2-70b-chat-hf) which is hosted as [Hugging Face Inference API](https://huggingface.co/inference-api), "
|
195 |
+
"and [Text Generation Inference](https://github.com/huggingface/text-generation-inference) is the underlying serving framework. ",
|
|
|
|
|
196 |
elem_classes=["center"])
|
197 |
+
)
|
198 |
+
gr.Markdown(
|
199 |
+
"***NOTE:*** If you are subscribing [PRO](https://huggingface.co/pricing#pro), you can simply duplicate this space and use your "
|
200 |
+
"Hugging Face Access Token to run the same application. Just add `HF_TOKEN` secret with the Token value accorindg to [this guide](https://huggingface.co/docs/hub/spaces-overview#managing-secrets-and-environment-variables)",
|
201 |
+
elem_classes=["center"]
|
202 |
+
)
|
203 |
+
|
204 |
|
205 |
with gr.Row():
|
206 |
with gr.Column(scale=1, min_width=180):
|