Spaces:
Runtime error
Runtime error
File size: 487 Bytes
0f023e8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | title: AI Model Runner
description: Multi-purpose AI API for code understanding, dialogue, and reasoning
sdk: docker
sdk_version: latest
hardware: t4
python_version: 3.9
build_command: pip install -r requirements.txt
start_command: uvicorn app:app --host 0.0.0.0 --port 8000
app_port: 8000
app_host: 0.0.0.0
environment_variables:
- PORT=8000
- HOST=0.0.0.0
tags:
- ai
- api
- fastapi
- ml
- nlp
- code-analysis
- dialogue
- reasoning
- transformers
- huggingface |