sheikhcoders commited on
Commit
0f023e8
·
verified ·
1 Parent(s): d50536b

Upload huggingface.yaml with huggingface_hub

Browse files
Files changed (1) hide show
  1. huggingface.yaml +24 -0
huggingface.yaml ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ title: AI Model Runner
2
+ description: Multi-purpose AI API for code understanding, dialogue, and reasoning
3
+ sdk: docker
4
+ sdk_version: latest
5
+ hardware: t4
6
+ python_version: 3.9
7
+ build_command: pip install -r requirements.txt
8
+ start_command: uvicorn app:app --host 0.0.0.0 --port 8000
9
+ app_port: 8000
10
+ app_host: 0.0.0.0
11
+ environment_variables:
12
+ - PORT=8000
13
+ - HOST=0.0.0.0
14
+ tags:
15
+ - ai
16
+ - api
17
+ - fastapi
18
+ - ml
19
+ - nlp
20
+ - code-analysis
21
+ - dialogue
22
+ - reasoning
23
+ - transformers
24
+ - huggingface