.env.example 881 Bytes
WEKNORA_BASE_URL=http://localhost:8080/api/v1
WEKNORA_API_KEY=
WEKNORA_KB_ID=
WEKNORA_KB_NAME=ragas-eval-pilot

# Ragas generation and judge models. These are evaluation-side models, not the
# model configuration used by the WeKnora backend.
OPENAI_API_KEY=replace-me
OPENAI_BASE_URL=https://api.openai.com/v1

# Optional split deployment. Use these when LLM and embedding are served by
# different OpenAI-compatible services, such as vLLM + Infinity.
RAGAS_LLM_API_KEY=replace-me
RAGAS_LLM_BASE_URL=http://localhost:8000/v1
RAGAS_EMBEDDING_API_KEY=replace-me
RAGAS_EMBEDDING_BASE_URL=http://localhost:7997/v1
RAGAS_RERANKER_API_KEY=replace-me
RAGAS_RERANKER_BASE_URL=http://localhost:7998/v1
RAGAS_RERANKER_MODEL=replace-me

RAGAS_GENERATOR_MODEL=gpt-4o-mini
RAGAS_JUDGE_MODEL=gpt-4o-mini
RAGAS_EMBEDDING_MODEL=text-embedding-3-small

TESTSET_SIZE=50
REQUEST_INTERVAL_SECONDS=0.2