LLM-Model2 / app.py
investmentllm's picture
Update app.py
019b5a5 verified
raw
history blame contribute delete
212 Bytes
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parent))
from api.server import app
import uvicorn
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=7860)