Skip to content

Commit d91099b

Browse files
committed
Uploaded the files
1 parent ae8cdd5 commit d91099b

13 files changed

+7690
-26
lines changed

.env.example

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Tavily for web search - https://app.tavily.com/home
2+
TAVILY_API_KEY=
3+
# Replicate to call LLMs - https://replicate.com/account/api-tokens
4+
REPLICATE_API_TOKEN=
5+
6+
# Groq for fast LLM responses - https://console.groq.com/keys
7+
GROQ_API_KEY=
8+
GROQ_MODEL=llama3-70b-8192
9+
GROQ_ALTERNATIVE_MODEL=llama3-8b-8192
10+
11+
12+
# For Usage_with_LLMs.ipynb
13+
14+
EMBED_MODEL=sentence-transformers/all-MiniLM-L6-v2
15+
16+
# https://app.pinecone.io/
17+
PINECONE_API_KEY=
18+
PINECONE_INDEX_NAME=my-vector-store
19+

.gitignore

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# custom files
2+
.vscode*
3+
data*
4+
.huggingface*
5+
6+
17
# Byte-compiled / optimized / DLL files
28
__pycache__/
39
*.py[cod]
@@ -106,10 +112,8 @@ ipython_config.py
106112
#pdm.lock
107113
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
108114
# in version control.
109-
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
115+
# https://pdm.fming.dev/#use-with-ide
110116
.pdm.toml
111-
.pdm-python
112-
.pdm-build/
113117

114118
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
115119
__pypackages__/

0 commit comments

Comments
 (0)