zenaight commited on
Commit ·
ef1eb82
1
Parent(s): b7f1d5f
Update server port and enhance dependencies in requirements
Browse files- Changed the server port from 8000 to 7860 in the `main.py` file to accommodate new configuration settings.
- Added `Pillow`, `requests`, and `aiofiles` to the `requirements.txt` file to support additional functionality and improve project capabilities.
- These updates aim to ensure the application runs on the correct port and has the necessary libraries for enhanced performance and features.
- main.py +1 -1
- requirements.txt +4 -1
main.py
CHANGED
|
@@ -113,4 +113,4 @@ async def startup_event():
|
|
| 113 |
|
| 114 |
if __name__ == "__main__":
|
| 115 |
import uvicorn
|
| 116 |
-
uvicorn.run(app, host="0.0.0.0", port=
|
|
|
|
| 113 |
|
| 114 |
if __name__ == "__main__":
|
| 115 |
import uvicorn
|
| 116 |
+
uvicorn.run(app, host="0.0.0.0", port=7860)
|
requirements.txt
CHANGED
|
@@ -7,4 +7,7 @@ langchain
|
|
| 7 |
langchain-openai
|
| 8 |
langgraph
|
| 9 |
langchain-core
|
| 10 |
-
supabase
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
langchain-openai
|
| 8 |
langgraph
|
| 9 |
langchain-core
|
| 10 |
+
supabase
|
| 11 |
+
Pillow
|
| 12 |
+
requests
|
| 13 |
+
aiofiles
|