ppsingh commited on
Commit
fc81d3b
·
verified ·
1 Parent(s): a6217eb

Create app.json

Browse files
Files changed (1) hide show
  1. app.json +12 -0
app.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ // app.json
2
+ {
3
+ "title": "My RAG Embedding Service",
4
+ "model": "sentence-transformers/all-MiniLM-L6-v2",
5
+ "env": {
6
+ "HF_MODEL_ID": "sentence-transformers/all-MiniLM-L6-v2",
7
+ "NUM_WORKERS": "1",
8
+ "PORT": "80",
9
+ "MAX_BATCH_SIZE": "32",
10
+ "MAX_INPUT_LENGTH": "512"
11
+ }
12
+ }