AmritSbisht commited on
Commit
af8811e
·
verified ·
1 Parent(s): fec1ad1

Upload 2 files

Browse files
Files changed (2) hide show
  1. .env +5 -0
  2. .gitignore +33 -0
.env ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ GOOGLE_API_KEY= "AIzaSyDV12vrr57IM98VmbEMdWm2fqDTMFFsNE4"
2
+ LANGSMITH_TRACING=true
3
+ LANGSMITH_ENDPOINT="https://api.smith.langchain.com"
4
+ LANGSMITH_API_KEY="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"
5
+ LANGSMITH_PROJECT="search bot"
.gitignore ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .env
2
+ ## Ignore Python virtual environments
3
+ myenv/
4
+ venv/
5
+ env/
6
+
7
+ # Ignore large binary files
8
+ *.dll
9
+ *.lib
10
+ *.so
11
+ *.exe
12
+
13
+ # Ignore compiled Python files
14
+ __pycache__/
15
+ *.pyc
16
+ *.pyo
17
+ *.pyd
18
+
19
+ # Ignore dependency cache
20
+ .pycache/
21
+ .tox/
22
+ .coverage
23
+ .htmlcov/
24
+
25
+ # Ignore IDE-specific files
26
+ .vscode/
27
+ .idea/
28
+ *.sublime-project
29
+ *.sublime-workspace
30
+
31
+ # Ignore logs and temporary files
32
+ *.log
33
+ *.tmp