Add gitignore
Browse files- .gitignore +50 -0
- documents.py +0 -2
- requirements.txt +1 -0
.gitignore
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Byte-compiled / optimized / DLL files
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
|
| 5 |
+
# C extensions
|
| 6 |
+
*.so
|
| 7 |
+
|
| 8 |
+
# Distribution / packaging
|
| 9 |
+
bin/
|
| 10 |
+
build/
|
| 11 |
+
develop-eggs/
|
| 12 |
+
dist/
|
| 13 |
+
eggs/
|
| 14 |
+
lib/
|
| 15 |
+
lib64/
|
| 16 |
+
parts/
|
| 17 |
+
sdist/
|
| 18 |
+
var/
|
| 19 |
+
*.egg-info/
|
| 20 |
+
.installed.cfg
|
| 21 |
+
*.egg
|
| 22 |
+
|
| 23 |
+
# Installer logs
|
| 24 |
+
pip-log.txt
|
| 25 |
+
pip-delete-this-directory.txt
|
| 26 |
+
|
| 27 |
+
# Unit test / coverage reports
|
| 28 |
+
.tox/
|
| 29 |
+
.coverage
|
| 30 |
+
.cache
|
| 31 |
+
nosetests.xml
|
| 32 |
+
coverage.xml
|
| 33 |
+
|
| 34 |
+
# Translations
|
| 35 |
+
*.mo
|
| 36 |
+
|
| 37 |
+
# Mr Developer
|
| 38 |
+
.mr.developer.cfg
|
| 39 |
+
.project
|
| 40 |
+
.pydevproject
|
| 41 |
+
|
| 42 |
+
# Rope
|
| 43 |
+
.ropeproject
|
| 44 |
+
|
| 45 |
+
# Django stuff:
|
| 46 |
+
*.log
|
| 47 |
+
*.pot
|
| 48 |
+
|
| 49 |
+
# Sphinx documentation
|
| 50 |
+
docs/_build/
|
documents.py
CHANGED
|
@@ -1,6 +1,4 @@
|
|
| 1 |
import os
|
| 2 |
-
import cohere
|
| 3 |
-
import getpass
|
| 4 |
from dotenv import load_dotenv
|
| 5 |
from langchain.document_loaders import (
|
| 6 |
TextLoader,
|
|
|
|
| 1 |
import os
|
|
|
|
|
|
|
| 2 |
from dotenv import load_dotenv
|
| 3 |
from langchain.document_loaders import (
|
| 4 |
TextLoader,
|
requirements.txt
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
python-dotenv
|
| 2 |
langchain==0.2.3
|
|
|
|
| 3 |
text-generation
|
| 4 |
pypdf
|
| 5 |
gradio
|
|
|
|
| 1 |
python-dotenv
|
| 2 |
langchain==0.2.3
|
| 3 |
+
langchain-community==0.2.4
|
| 4 |
text-generation
|
| 5 |
pypdf
|
| 6 |
gradio
|