forked from assafelovic/gpt-researcher
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.env.example
43 lines (33 loc) · 1.01 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# .env.example
# OpenAI API key for accessing OpenAI's GPT models
OPENAI_API_KEY=
# API key for accessing Tavily's services
TAVILY_API_KEY=
# API key for accessing LangChain's services
LANGCHAIN_API_KEY=
# Path to the directory where documents are stored
DOC_PATH=./my-docs
# The name of the embedding model to use for Ollama
OLLAMA_EMBEDDING_MODEL=
# The Ollama endpoint to use
OLLAMA_BASE_URL=
# Choose one of the available retrievers by uncommenting the desired retriever:
# RETRIEVER=arxiv
# RETRIEVER=bing
# RETRIEVER=custom
# RETRIEVER=duckduckgo
# RETRIEVER=exa
# RETRIEVER=google
# RETRIEVER=searx
# RETRIEVER=semantic_scholar
# RETRIEVER=serpapi
# RETRIEVER=serper
# RETRIEVER=tavily
# RETRIEVER=pubmed_central
# Example setting for retriever
RETRIEVER=tavily
# Maximum number of search results to return per query
MAX_SEARCH_RESULTS_PER_QUERY=5
# API key for accessing the NCBI (National Center for Biotechnology Information) services
# Required for accessing PubMed Central and other NCBI databases
NCBI_API_KEY=