Spaces:
Runtime error
Runtime error
| from fastapi import FastAPI | |
| import pickle | |
| import uvicorn | |
| import pandas as pd | |
| app = FastAPI() | |
| #Endpoints | |
| #Root endpoints | |
| async def root(): | |
| # Dapatkan URL publik dari ngrok | |
| ngrok_url = "Tidak Ada URL Publik (ngrok belum selesai memulai)" | |
| return {"message": "Hello, World!", "ngrok_url": ngrok_url} | |