Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -11,9 +11,10 @@ HF_TOKEN = os.environ.get("HF_TOKEN", None)
|
|
11 |
|
12 |
DESCRIPTION = '''
|
13 |
<div>
|
14 |
-
<h1 style="text-align: center;">
|
15 |
-
<p>This Space demonstrates model <a href="https://huggingface.co/
|
16 |
-
<p>🔎 For more details about the
|
|
|
17 |
</div>
|
18 |
'''
|
19 |
|
@@ -81,7 +82,7 @@ chatbot=gr.Chatbot(height=500) #placeholder=PLACEHOLDER
|
|
81 |
|
82 |
with gr.Blocks(fill_height=True) as demo:
|
83 |
|
84 |
-
|
85 |
|
86 |
gr.ChatInterface(
|
87 |
fn=chat_llama3_8b,
|
|
|
11 |
|
12 |
DESCRIPTION = '''
|
13 |
<div>
|
14 |
+
<h1 style="text-align: center;">Chat with Llama3-8b</h1>
|
15 |
+
<p>This Space demonstrates the instruction-tuned model <a href="https://huggingface.co/hsramall/hsramall-8b-chat-placeholder"><b>Llama3 8b Chat</b></a> by Meta. Llama3 is Meta’s new open LLM and comes in two sizes: 8b and 70b. Feel free to play with it, or duplicate to run privately!</p>
|
16 |
+
<p>🔎 For more details about the Llama3 release and how to use the model with <code>transformers</code>, take a look <a href="https://huggingface.co/blog/llama3">at our blog post</a>.</p>
|
17 |
+
<p>🦕 Looking for an even more powerful model? Check out the <b>Hugging Chat</b> integration for Meta Llama 3 70b</p>
|
18 |
</div>
|
19 |
'''
|
20 |
|
|
|
82 |
|
83 |
with gr.Blocks(fill_height=True) as demo:
|
84 |
|
85 |
+
gr.Markdown(DESCRIPTION)
|
86 |
|
87 |
gr.ChatInterface(
|
88 |
fn=chat_llama3_8b,
|