modified to combine openwebui and ollama

This commit is contained in:
Iyeoluwa Akinrinola
2025-05-09 20:00:26 +01:00
parent 4c0cff7cca
commit 386af38a99
9 changed files with 149 additions and 35 deletions
+2 -2
View File
@@ -8,10 +8,10 @@ import sys
# Run the service
if __name__ == "__main__":
print("Starting AI service on 0.0.0.0:5251")
print("Starting AI service on 0.0.0.0:5252")
uvicorn.run(
"ai_service.api:app",
host="0.0.0.0",
port=5251,
port=5252,
reload=True
)