This commit is contained in:
TCUDIKEL
2025-05-11 00:37:24 +03:00
5 changed files with 9 additions and 4 deletions

2
.gitignore vendored
View File

@@ -1,3 +1,5 @@
supervisor.conf
supervisor
.venv
venv
config.json

3
logs.sh Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
tail -f supervisor/logs/llm-api-mcphost.log

View File

@@ -124,4 +124,4 @@ async def health_check():
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
uvicorn.run(app, host=settings.host, port=settings.port)