claude-proxy / run_server.py
dheraingoud's picture
Deploy latest upstream with key rotation, vision adapter, and HF configs
61bb677
Raw
History Blame Contribute Delete
261 Bytes
import uvicorn
from free_claude_code.runtime.bootstrap import build_asgi_app
from free_claude_code.config.settings import Settings
app = build_asgi_app(Settings())
if __name__ == '__main__':
uvicorn.run(app, host="127.0.0.1", port=8001, log_level="debug")