Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
265c97e
WIP: RAGForge intermediate PR (#393)
ianarawjo Oct 23, 2025
b143d11
npm run clean
ianarawjo Oct 23, 2025
c968425
Fix chunk node display
ianarawjo Oct 23, 2025
336642b
wip: revert flask app
ianarawjo Oct 23, 2025
71bdc0c
revert flask app to main
ianarawjo Oct 23, 2025
5ba2a12
WIP: Link retrieval methods for rank fusion
ianarawjo Oct 24, 2025
1415367
Bug fixes and Chunk Node UI update (#394)
dxa204 Oct 27, 2025
43d7233
Retrieval Node UI fix, and some other bug fixes (#395)
dxa204 Oct 31, 2025
14417a8
Remove large media files
ianarawjo Oct 31, 2025
e9545ab
Fix eslint error
ianarawjo Oct 31, 2025
06c4085
Remove 'linked' badge in retrieval method list
ianarawjo Oct 31, 2025
f50c7bc
Fix CSS bug that changed prompt node model list formatting
ianarawjo Oct 31, 2025
5d18253
WIP: Add reranker node and add [rag] install option (#397)
ianarawjo Nov 9, 2025
f03089d
Conda installation support and Fixing `checkRagAvailable()` API error…
gauranshkumar Nov 12, 2025
3c07ba2
Retrieval fusion and bug fixes (#398)
dxa204 Nov 12, 2025
79e0e8b
Bug fix sending rag available bool
ianarawjo Nov 12, 2025
8585019
Fix flask backend local URL in production bug
ianarawjo Nov 12, 2025
97c6314
Fixing Rerank node (#400)
gauranshkumar Nov 13, 2025
fda3d8b
Fix example flows
ianarawjo Nov 13, 2025
7a5b995
Replace spacy with NLTK punkt tokenizer. Remove spacy dependency.
ianarawjo Nov 17, 2025
884462b
Fix dark mode retriever list
ianarawjo Nov 17, 2025
5b36b8b
Remove langchain dependencies
ianarawjo Nov 17, 2025
ba87193
Modify CI workflow for Python package dependencies
ianarawjo Nov 17, 2025
6263251
Add requirements lock for rag
ianarawjo Nov 17, 2025
317838b
Update Python version to 3.10.11 in CI workflow
ianarawjo Nov 17, 2025
e6cfb7a
Bug fixes to RAGForge and minor tweaks (#402)
dxa204 Dec 11, 2025
8274455
Fix width of chunk and retrieval nodes
ianarawjo Jan 1, 2026
0f4e9eb
WIP refactoring retrieval methods menu and registry to make sense
ianarawjo Jan 1, 2026
09f9427
Add tests for embedding retrieval methods, and more refactoring of re…
ianarawjo Jan 2, 2026
1f2a73b
RAGForge bug fixes, GroupBy in VisNode, and Docker CI setup (#403)
gauranshkumar Apr 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 106 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
# Git files
.git
.gitignore
.gitattributes
.github

# Documentation (we only need README.md)
docs/
INSTALL_GUIDE.md
CONTRIBUTING.md
LICENSE
*.md
!README.md

# Development files
.vscode
.idea
*.swp
*.swo
*~
.editorconfig

# Python cache and build artifacts
__pycache__
*.py[cod]
*$py.class
*.so
.Python
*.egg-info
dist
build
.pytest_cache
.coverage
htmlcov
*.egg
MANIFEST
.mypy_cache
.ruff_cache
.tox
.nox
*.cover
.hypothesis

# Node (we'll install and build in Docker)
chainforge/react-server/node_modules
chainforge/react-server/.pnp
chainforge/react-server/.pnp.js
chainforge/react-server/coverage
chainforge/react-server/build

# Testing and development
tests/
test/
*.test.js
*.test.ts
*.test.tsx
*.spec.js
*.spec.ts
*.spec.tsx
coverage/
.coverage
*.log
*.logs

# Environment files
.env
.env.*
!.env.example
*.local

# ChainForge specific
chainforge/cache
chainforge/examples/oaievals/
chainforge_assets/
packages/
jobs/
data/

# Docker files (avoid recursive copying)
Dockerfile*
docker-compose*.yml
.dockerignore

# CI/CD
.circleci
.travis.yml
.gitlab-ci.yml
azure-pipelines.yml

# IDE and editor files
*.sublime-*
.vscode
.idea
*.iml

# OS files
.DS_Store
Thumbs.db
Desktop.ini

# Temporary files
*.tmp
*.temp
*.bak
*.swp
*~
Loading
Loading