Skip to content

Commit 0be681f

Browse files
authored
Upstream changes for v0.8.0 release (#161)
Signed-off-by: Shubhadeep Das <shubhadeepd@nvidia.com>
1 parent b723c72 commit 0be681f

File tree

726 files changed

+17151
-12796
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

726 files changed

+17151
-12796
lines changed

.dockerignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
.gitmodules
66

77
# Ignore temperory volumes
8-
deploy/compose/volumes
8+
RAG/examples/**/volumes
99

1010
# creating a docker image
1111
.dockerignore

.gitattributes

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
notebooks/dataset.zip filter=lfs diff=lfs merge=lfs -text
1+
notebooks/dataset.zip filter=lfs diff=lfs merge=lfs -text

.github/workflows/docs-build.yaml

-153
This file was deleted.

.github/workflows/docs-preview-pr.yaml

-117
This file was deleted.

.github/workflows/docs-remove-stale-reviews.yaml

-11
This file was deleted.

.gitignore

+9-8
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,10 @@
33
**__pycache__**
44

55
# Helm Exclusions
6-
**/charts/*.tgz
7-
8-
# project temp files
9-
deploy/*.log
10-
deploy/*.txt
6+
**/helm-charts/*.tgz
117

128
# Docker Compose exclusions
13-
volumes/
9+
RAG/examples/**/volumes
1410
uploaded_files/
1511

1612
# Visual Studio Code
@@ -26,5 +22,10 @@ docs/experimental
2622
docs/tools
2723

2824
# Developing examples
29-
RetrievalAugmentedGeneration/examples/simple_rag_api_catalog/
30-
deploy/compose/simple-rag-api-catalog.yaml
25+
RAG/examples/simple_rag_api_catalog/
26+
RAG/examples/simple-rag-api-catalog.yaml
27+
28+
# Notebook checkpoints
29+
RAG/notebooks/langchain/.ipynb_checkpoints
30+
RAG/notebooks/langchain/data/nv_embedding
31+
RAG/notebooks/langchain/data/save_embedding

.pre-commit-config.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,15 @@ repos:
1313
rev: 19.10b0
1414
hooks:
1515
- id: black
16+
files: ^RAG/
1617
args: ["--skip-string-normalization", "--line-length=119"]
1718
additional_dependencies: ['click==8.0.4']
1819
- repo: https://github.com/pycqa/isort
1920
rev: 5.12.0
2021
hooks:
2122
- id: isort
23+
files: ^RAG/
2224
name: isort (python)
2325
args: ["--multi-line=3", "--trailing-comma", "--force-grid-wrap=0", "--use-parenthese", "--line-width=119", "--ws"]
26+
27+

0 commit comments

Comments
 (0)