Spaces:
Sleeping
Sleeping
File size: 474 Bytes
b234186 a368317 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
export TABLE_NAME=BGE_ParagraphsSplitter
export EMB_MODEL=BAAI/bge-large-en-v1.5
export TOP_K=5
export HF_MODEL=mistralai/Mistral-7B-Instruct-v0.2
export OPENAI_MODEL=gpt-4-turbo-preview
export CROSS_ENCODER=BAAI/bge-large-en-v1.5
#### SECRETS ####
################
export TEMPERATURE=0.9
export MAX_NEW_TOKENS=256
export TOP_P=0.6
export REP_PENALTY=1.2
export DO_SAMPLE=True
export FREQ_PENALTY=0
export VECTOR_COLUMN=vector
export TEXT_COLUMN=text
export BATCH_SIZE=32 |