pharma-agent / main.py
Arshdeep2k5
Fresh start - no db files
8a9e2f2
Raw
History Blame Contribute Delete
224 Bytes
"""
PharmaAgent — main.py
Run with: uvicorn main:app --reload --port 7860
"""
import uvicorn
from server.app import app
if __name__ == "__main__":
uvicorn.run("server.app:app", host="0.0.0.0", port=7860, reload=True)