pharma_agent / app.py
Arshdeep2k5's picture
Upload folder using huggingface_hub
4e8ada9 verified
Raw
History Blame Contribute Delete
242 Bytes
# app.py — Re-export from server.app for local development compatibility
# The actual FastAPI app is in server/app.py for Docker deployment
from server.app import app, main
__all__ = ["app", "main"]
if __name__ == "__main__":
main()