feat: bind aiohttp server to port 8081

Co-authored-by: aider (gemini/gemini-2.5-pro-preview-05-06) <aider@aider.chat>
This commit is contained in:
2025-07-31 18:30:19 -06:00
parent ed62e260a7
commit 2fd432f516

View File

@@ -125,7 +125,7 @@ def main():
app.router.add_get('/', handle_root)
app.on_startup.append(on_startup)
app.on_cleanup.append(on_cleanup)
web.run_app(app)
web.run_app(app, port=8081)
if __name__ == '__main__':
if not os.path.exists(MODEL_PATH):