Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -46,10 +46,12 @@ gr.ChatInterface(
|
|
46 |
chatbot=gr.Chatbot(height=400),
|
47 |
textbox=gr.Textbox(placeholder="Enter message here", container=False, scale=7),
|
48 |
title="Meta-Llama-3-8B-Instruct",
|
|
|
|
|
|
|
49 |
additional_inputs=[
|
50 |
gr.Textbox("You are helpful AI.", label="System Prompt"),
|
51 |
gr.Slider(512, 4096, label="Max New Tokens"),
|
52 |
gr.Slider(0, 1, label="Temperature")
|
53 |
]
|
54 |
-
).launch()
|
55 |
-
# The Code
|
|
|
46 |
chatbot=gr.Chatbot(height=400),
|
47 |
textbox=gr.Textbox(placeholder="Enter message here", container=False, scale=7),
|
48 |
title="Meta-Llama-3-8B-Instruct",
|
49 |
+
description="""
|
50 |
+
To Learn about Fine-tuning Llama-3-8B, Ckeck https://exnrt.com/blog/ai/finetune-llama3-8b/.
|
51 |
+
""",
|
52 |
additional_inputs=[
|
53 |
gr.Textbox("You are helpful AI.", label="System Prompt"),
|
54 |
gr.Slider(512, 4096, label="Max New Tokens"),
|
55 |
gr.Slider(0, 1, label="Temperature")
|
56 |
]
|
57 |
+
).launch()
|
|