Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -50,7 +50,7 @@ with gr.Blocks() as demo:
|
|
50 |
chatbot = gr.Chatbot()
|
51 |
msg = gr.Textbox()
|
52 |
clear = gr.Button("Clear")
|
53 |
-
llm_chain, llm = init_chain(model, tokenizer)
|
54 |
|
55 |
def user(user_message, history):
|
56 |
return "", history + [[user_message, None]]
|
|
|
50 |
chatbot = gr.Chatbot()
|
51 |
msg = gr.Textbox()
|
52 |
clear = gr.Button("Clear")
|
53 |
+
#llm_chain, llm = init_chain(model, tokenizer)
|
54 |
|
55 |
def user(user_message, history):
|
56 |
return "", history + [[user_message, None]]
|