Spaces:
Runtime error
Runtime error
for_mtai (#1)
Browse files- Change to mtai (826fb3a36bbc33937a56d4e22fc1593c265353f7)
- demo.py +2 -2
- requirements.txt +1 -1
demo.py
CHANGED
|
@@ -43,8 +43,8 @@ def predict(user_message, history, thread):
|
|
| 43 |
yield history, thread
|
| 44 |
|
| 45 |
# Launch the Gradio chat interface
|
| 46 |
-
with gr.Blocks(title="
|
| 47 |
-
chatbot = gr.Chatbot(type='messages', label="
|
| 48 |
msg = gr.Textbox(placeholder="Type your message here...")
|
| 49 |
user_content = gr.State("")
|
| 50 |
thread = gr.State(create_thread)
|
|
|
|
| 43 |
yield history, thread
|
| 44 |
|
| 45 |
# Launch the Gradio chat interface
|
| 46 |
+
with gr.Blocks(title="TM Tender Assistant") as demo:
|
| 47 |
+
chatbot = gr.Chatbot(type='messages', label="TM Tender Assistant")
|
| 48 |
msg = gr.Textbox(placeholder="Type your message here...")
|
| 49 |
user_content = gr.State("")
|
| 50 |
thread = gr.State(create_thread)
|
requirements.txt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
gradio==5.3.0
|
| 2 |
-
openai
|
| 3 |
python-dotenv==1.0.1
|
|
|
|
| 1 |
gradio==5.3.0
|
| 2 |
+
openai
|
| 3 |
python-dotenv==1.0.1
|