update info
Browse files
app.py
CHANGED
@@ -89,8 +89,10 @@ with gr.Blocks(css=CSS) as demo:
|
|
89 |
with gr.Column():
|
90 |
gr.Markdown(f"""
|
91 |
## This PREVIEW demo is an un-quantized GPU chatbot of Jackalope 7B
|
92 |
-
|
93 |
-
Brought to you by your friends at Open Access AI Collective, Alignment Lab AI, and OpenChat!
|
|
|
|
|
94 |
""")
|
95 |
with gr.Row():
|
96 |
gr.Markdown("# π°π¦ Jackalope 7B Playground Space! π°π¦")
|
@@ -98,8 +100,7 @@ with gr.Blocks(css=CSS) as demo:
|
|
98 |
system_msg = gr.Textbox(
|
99 |
start_message, label="System Message", interactive=True, visible=True, placeholder="System prompt. Provide instructions which you want the model to remember.", lines=5)
|
100 |
with gr.Row():
|
101 |
-
|
102 |
-
chatbot = gr.Chatbot(elem_id="chatbot")
|
103 |
with gr.Row():
|
104 |
message = gr.Textbox(
|
105 |
label="What do you want to chat about?",
|
|
|
89 |
with gr.Column():
|
90 |
gr.Markdown(f"""
|
91 |
## This PREVIEW demo is an un-quantized GPU chatbot of Jackalope 7B
|
92 |
+
- Completed model drops on Wednesday October 11th.
|
93 |
+
- Brought to you by your friends at Open Access AI Collective, Alignment Lab AI, and OpenChat!
|
94 |
+
|
95 |
+
[<img src="https://raw.githubusercontent.com/OpenAccess-AI-Collective/axolotl/main/image/axolotl-badge-web.png" alt="Built with Axolotl" width="200" height="32"/>](https://github.com/OpenAccess-AI-Collective/axolotl)
|
96 |
""")
|
97 |
with gr.Row():
|
98 |
gr.Markdown("# π°π¦ Jackalope 7B Playground Space! π°π¦")
|
|
|
100 |
system_msg = gr.Textbox(
|
101 |
start_message, label="System Message", interactive=True, visible=True, placeholder="System prompt. Provide instructions which you want the model to remember.", lines=5)
|
102 |
with gr.Row():
|
103 |
+
chatbot = gr.Chatbot(elem_id="chatbot").style(height=400)
|
|
|
104 |
with gr.Row():
|
105 |
message = gr.Textbox(
|
106 |
label="What do you want to chat about?",
|