Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
krstakis
/
prompt_search_engine
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
51a3a8c
prompt_search_engine
/
api
/
service_manager.py
krstakis
fixed imports
eb99ae2
11 months ago
raw
Copy download link
history
blame
Safe
169 Bytes
import
uvicorn
from
web_server
import
app
def
run
():
"""
Start the FastAPI web server using Uvicorn.
"""
uvicorn.run(app, host=
"0.0.0.0"
, port=
7860
)