Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
0050e3d
WIP: local changes
buildvoc-agent Feb 21, 2026
f3b5907
WIP: prep for Dynamo deployment
buildvoc-agent Feb 21, 2026
73ad7f2
Update ProjectKnowledge renderer and picture captions
buildvoc-agent Mar 7, 2026
b310897
Add Project Knowledge dashboard renderer
buildvoc-agent Mar 7, 2026
a90ae54
Update chat picture sidecar and export DoclingDocument
buildvoc-agent Mar 7, 2026
2a0fcb8
Update chat picture sidecar, export DoclingDocument, and backend RAG …
buildvoc-agent Mar 7, 2026
bfef952
Update chat picture sidecar, export DoclingDocument, and backend RAG …
buildvoc-agent Mar 7, 2026
40d9fe3
Update proxy, vLLM config, docs, and remaining chat assets
buildvoc-agent Mar 7, 2026
7a8c730
WIP: picture auto-pin and project knowledge updates
buildvoc-agent Mar 21, 2026
7999d63
Add example Docling data for text and geolocation
buildvoc-agent Mar 21, 2026
cf28c90
update example to include Place
buildvoc10 Mar 21, 2026
1ebe23f
pass 0 from docling-serve
buildvoc10 Mar 21, 2026
e043215
feat: pinned picture index
buildvoc-agent Mar 23, 2026
c247799
docs: update README for pinned picture index
buildvoc-agent Mar 23, 2026
8777f0e
feat: picture index backend scaffolding
buildvoc-agent Mar 24, 2026
0fe3312
Sync local changes before Jetson FAISS Docker work
buildvoc-agent Mar 25, 2026
9e04ff3
Add Jetson FAISS GPU Dockerfile for backend-rag
buildvoc-agent Mar 25, 2026
b9ccf7d
Document Jetson backend-rag architecture and deployment
buildvoc-agent Mar 27, 2026
70ab15d
Update frontend app config for Jetson deployment
buildvoc-agent Mar 27, 2026
0a2d2a0
Simplified backend to single FAISS service on port 8001
buildvoc10 Apr 4, 2026
b627500
Update README for Jetson FAISS single-backend setup
buildvoc-agent Apr 4, 2026
a1aaede
Update backend-rag README
buildvoc-agent Apr 4, 2026
3d200e8
Update backend-rag README
buildvoc-agent Apr 4, 2026
9dcb113
Update backend-rag README
buildvoc-agent Apr 4, 2026
97ef07d
Update backend-rag README
buildvoc-agent Apr 4, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
182 changes: 144 additions & 38 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,50 +1,156 @@
# Python Exclusions
.venv
**__pycache__**
# Dependencies
node_modules/
.pnp/
.pnp.js
package-lock.json
yarn.lock

# Helm Exclusions
**/helm-charts/*.tgz
# Testing
coverage/
.nyc_output/
test-results/
junit.xml

# Docker Compose exclusions
RAG/examples/**/volumes
uploaded_files/
# Production
build/
dist/
out/
.next/
.nuxt/
.cache/
.output/

# Environment files
.env
.env.*
!.env.example
.env.local
.env.development.local
.env.test.local
.env.production.local
.env*.local
*.env

# Mac OS exclusions
.DS_Store

# Visual Studio Code
.vscode

# Node modules
**/node_modules
# Logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
logs/
*.log
debug.log
error.log

# File from docs builds
docs/_*
docs/notebooks
docs/experimental
docs/tools
# IDE
.idea/
.vscode/
*.swp
*.swo
*.sublime-workspace
*.sublime-project
.project
.classpath
.settings/
*.code-workspace

# Developing examples
RAG/examples/simple_rag_api_catalog/
RAG/examples/simple-rag-api-catalog.yaml
# OS
.DS_Store
Thumbs.db
desktop.ini
$RECYCLE.BIN/
*.lnk

# Notebook checkpoints
RAG/notebooks/langchain/.ipynb_checkpoints
RAG/notebooks/langchain/data/nv_embedding
RAG/notebooks/langchain/data/save_embedding
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
ENV/
.env/
.venv/
pip-log.txt
pip-delete-this-directory.txt
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
.python-version
*.egg-info/
.installed.cfg
*.egg
MANIFEST
dist/
build/
eggs/
parts/
bin/
var/
sdist/
develop-eggs/
.installed.cfg
lib/
lib64/

# IntelliJ's project specific settings file
.idea
# RAG specific
data/
embeddings/
*.faiss
*.pkl
*.bin
*.vec
*.model
*.index
chunks/
documents/
vectors/
corpus/
indexes/

# Environment variables
.env
# Temporary files
*.tmp
*.temp
*.bak
*.swp
*~
*.swx
*.swo
*.swn
*.bak
*.orig
*.rej
*.patch
*.diff

# egg-info directories
**/egg-info
# Build artifacts
*.min.js
*.min.css
*.map
*.gz
*.br
*.zip
*.tar
*.tar.gz
*.tgz
*.rar
*.7z

# uv exclusion
uv.lock
# Debug
.debug/
debug/
debug.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# data designer exclusion
data-designer-tutorial-output/
# Local development
.local/
local/
local.*
238 changes: 0 additions & 238 deletions CHANGELOG.md

This file was deleted.

31 changes: 0 additions & 31 deletions LICENSE.DATA

This file was deleted.

Loading