Spaces:
Running
Running
File size: 219 Bytes
19b4e98 | 1 2 3 4 5 6 7 8 9 | param(
[string]$ApiKey = "dev-key-change-me",
[string]$PublicBaseUrl = "http://localhost:7860"
)
$env:MCP_API_KEY = $ApiKey
$env:PUBLIC_BASE_URL = $PublicBaseUrl
uvicorn app:app --host 0.0.0.0 --port 7860 --reload
|