Spaces:
Runtime error
Runtime error
File size: 509 Bytes
e9b44c9 b4085f5 e9b44c9 6d509bd 124395e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
export TABLE_NAME=minilm_nltk
export EMB_MODEL=sentence-transformers/all-MiniLM-L6-v2
export TOP_K=5
export HF_MODEL=mistralai/Mistral-7B-Instruct-v0.2
export OPENAI_MODEL=gpt-4-turbo-preview
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=-2
export VECTOR_COLUMN=vector
export TEXT_COLUMN=text
export BATCH_SIZE=32
#### SECRETS ####
export OPENAI_API_KEY=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
################ |