Commit
·
5e9aba9
1
Parent(s):
7678704
Initial commit
Browse files- chatbot/.gitattributes +3 -0
- chatbot/app.py +7 -0
chatbot/.gitattributes
CHANGED
|
@@ -1,3 +1,6 @@
|
|
| 1 |
build/LMS_Chatbot/LMS_Chatbot.pkg filter=lfs diff=lfs merge=lfs -text
|
| 2 |
build/LMS_Chatbot/*.pyz filter=lfs diff=lfs merge=lfs -text
|
| 3 |
build/LMS_Chatbot/*.zip filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
build/LMS_Chatbot/LMS_Chatbot.pkg filter=lfs diff=lfs merge=lfs -text
|
| 2 |
build/LMS_Chatbot/*.pyz filter=lfs diff=lfs merge=lfs -text
|
| 3 |
build/LMS_Chatbot/*.zip filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 5 |
+
*.pkg filter=lfs diff=lfs merge=lfs -text
|
| 6 |
+
*.zip filter=lfs diff=lfs merge=lfs -text
|
chatbot/app.py
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
def respond(message):
|
| 4 |
+
return f"You said: {message}"
|
| 5 |
+
|
| 6 |
+
iface = gr.Interface(fn=respond, inputs="text", outputs="text")
|
| 7 |
+
iface.launch()
|