Commit
·
2fae3ca
1
Parent(s):
1653888
Shorten short_description to meet Hugging Face metadata requirements
Browse files- main.py +1 -2
- requirements.txt +1 -1
main.py
CHANGED
|
@@ -158,8 +158,7 @@ with gr.Blocks(css=css, theme="gradio/soft") as chatbot_ui:
|
|
| 158 |
label="MGZon Chatbot",
|
| 159 |
height=750,
|
| 160 |
latex_delimiters=LATEX_DELIMS,
|
| 161 |
-
elem_classes="chatbot"
|
| 162 |
-
type="messages"
|
| 163 |
)
|
| 164 |
|
| 165 |
gr.Markdown("---") # فاصل بسيط
|
|
|
|
| 158 |
label="MGZon Chatbot",
|
| 159 |
height=750,
|
| 160 |
latex_delimiters=LATEX_DELIMS,
|
| 161 |
+
elem_classes="chatbot"
|
|
|
|
| 162 |
)
|
| 163 |
|
| 164 |
gr.Markdown("---") # فاصل بسيط
|
requirements.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
fastapi==0.115.2
|
| 2 |
uvicorn==0.30.6
|
| 3 |
-
gradio
|
| 4 |
openai==1.42.0
|
| 5 |
httpx==0.27.0
|
| 6 |
python-dotenv==1.0.1
|
|
|
|
| 1 |
fastapi==0.115.2
|
| 2 |
uvicorn==0.30.6
|
| 3 |
+
gradio>=4.44.1
|
| 4 |
openai==1.42.0
|
| 5 |
httpx==0.27.0
|
| 6 |
python-dotenv==1.0.1
|