Spaces:
Runtime error
Runtime error
Ivan Roman
commited on
Commit
·
6fd533f
1
Parent(s):
6cb1100
Update app.py
Browse files
app.py
CHANGED
@@ -16,8 +16,8 @@ def CustomChatGPT(user_input):
|
|
16 |
messages.append({"role": "assistant", "content": ChatGPT_reply})
|
17 |
return ChatGPT_reply
|
18 |
|
19 |
-
|
20 |
|
21 |
-
demo = gradio.Interface(fn=CustomChatGPT, inputs="text", outputs="text", title="BioTrack AI Assistant", description="
|
22 |
|
23 |
demo.launch()
|
|
|
16 |
messages.append({"role": "assistant", "content": ChatGPT_reply})
|
17 |
return ChatGPT_reply
|
18 |
|
19 |
+
description="Welcome to CannaAssist AI Assistant! This chatbot is designed to help answer your questions related to BioTrack and the cannabis regulations in New Mexico. Simply type your question or message in the input box and get an informative response from the assistant."
|
20 |
|
21 |
+
demo = gradio.Interface(fn=CustomChatGPT, inputs="text", outputs="text", title="BioTrack AI Assistant", description="description")
|
22 |
|
23 |
demo.launch()
|