Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
62 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
9d87631
adding initial container support
gauranshkumar Nov 13, 2025
d0bf780
adding initial container support
gauranshkumar Nov 13, 2025
68c08c2
reducing docker image size
gauranshkumar Nov 13, 2025
f003cc2
reducing docker image size
gauranshkumar Nov 13, 2025
5e0a538
reducing docker image size
gauranshkumar Nov 13, 2025
c81f301
reducing docker image size
gauranshkumar Nov 13, 2025
ba2a7ae
revamp docker
gauranshkumar Nov 17, 2025
21e1264
revamp docker
gauranshkumar Nov 17, 2025
7b3d3fe
revamp docker for prod and dev
gauranshkumar Nov 17, 2025
69f8268
CPU only torch to reduce image size
gauranshkumar Nov 17, 2025
cc3db6e
CPU only torch to reduce image size with constraints
gauranshkumar Nov 17, 2025
1ea2de7
docker bugfix
gauranshkumar Nov 17, 2025
0d824dc
docker bugfix
gauranshkumar Nov 17, 2025
d1f815f
completely working CPU only build
gauranshkumar Nov 17, 2025
1f70677
GA autmatic build with CPU and GPU
gauranshkumar Nov 17, 2025
1ee57d5
fixing GA build error
gauranshkumar Nov 17, 2025
01046f7
optimising build and fixing bugs
gauranshkumar Nov 20, 2025
1ff5c30
optimising build and fixing bugs
gauranshkumar Nov 20, 2025
30bbdbb
optimising build and fixing bugs for GPU
gauranshkumar Nov 20, 2025
6a6fb6b
removed caching and fixed GPU build
gauranshkumar Nov 20, 2025
cf524b7
removed caching and fixed GPU build
gauranshkumar Nov 20, 2025
e8d785b
more optimisations
gauranshkumar Nov 25, 2025
a6b9a8c
segregating builds for faster proceccing and removing cacheing
gauranshkumar Nov 27, 2025
a884e57
removed gpu-arm64 build and added further conditionals for imporoving…
gauranshkumar Nov 27, 2025
9835d87
removed pip and npm cacheing for smaller docker image
gauranshkumar Nov 27, 2025
0683f31
making more space in GA runner for the NVIDIA builds
gauranshkumar Nov 28, 2025
6b07f4d
decluttering the GA build file and also reducing the clutter on docer…
gauranshkumar Nov 28, 2025
6aa4a8f
[skip ci] added docs
gauranshkumar Nov 28, 2025
69f7665
Reduced docs for docker on main readme
gauranshkumar Dec 30, 2025
4b82044
[skip ci] moved the image to official chainforge docker repo
gauranshkumar Dec 30, 2025
df9c088
Update Docker run command to use Docker Compose
gauranshkumar Dec 30, 2025
d197f39
Fixing groupby in VisNode
gauranshkumar Mar 23, 2026
bdc19e2
default retrival response inspector to retrival method
gauranshkumar Mar 23, 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