reference GweLLM project
Browse files
app.py
CHANGED
@@ -64,7 +64,10 @@ max_history_length = 3
|
|
64 |
native_chat_history = []
|
65 |
|
66 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
67 |
-
|
|
|
|
|
|
|
68 |
msg = gr.Textbox(label='User Input')
|
69 |
|
70 |
def clear(chat_history):
|
|
|
64 |
native_chat_history = []
|
65 |
|
66 |
with gr.Blocks(theme=gr.themes.Soft()) as demo:
|
67 |
+
|
68 |
+
gr.Markdown("# BreizhBot\n## Breton Chatbot (Translation based)\nPart of the [GweLLM](https://github.com/blackccpie/GweLLM) project")
|
69 |
+
|
70 |
+
chatbot = gr.Chatbot(label="Chat", type="messages")
|
71 |
msg = gr.Textbox(label='User Input')
|
72 |
|
73 |
def clear(chat_history):
|