mirror of
https://github.com/langchain-ai/retrieval-agent-template-js.git
synced 2026-07-01 15:24:18 -04:00
0b37680e4c
Co-authored-by: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com>
32 lines
612 B
Bash
32 lines
612 B
Bash
# To separate your traces from other application
|
|
LANGCHAIN_PROJECT=retrieval-agent
|
|
|
|
# The following depend on your selected configuration
|
|
|
|
# LLM choice:
|
|
ANTHROPIC_API_KEY=....
|
|
FIREWORKS_API_KEY=...
|
|
OPENAI_API_KEY=...
|
|
|
|
# Embeddings choice
|
|
OPENAI_API_KEY=...
|
|
COHERE_API_KEY=...
|
|
|
|
# Retrieval provider
|
|
|
|
## Elastic cloud:
|
|
ELASTICSEARCH_URL=...
|
|
ELASTICSEARCH_API_KEY=...
|
|
|
|
## Elastic local:
|
|
ELASTICSEARCH_URL=http://host.docker.internal:9200
|
|
ELASTICSEARCH_USER=elaastic
|
|
ELASTICSEARCH_PASSWORD=changeme
|
|
|
|
## Pinecone
|
|
PINECONE_API_KEY=...
|
|
PINECONE_INDEX_NAME=...
|
|
|
|
## MongoDB Atlas
|
|
MONGODB_URI=... # Full connection string
|