Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
bb6c41d
feat: Implement RAG (Retrieval-Augmented Generation) with ONNX and Ll…
polarbeargo Feb 11, 2026
07265cb
fix: remove postinstall-postinstall to resolve workspace conflicts
polarbeargo Feb 11, 2026
1348d4a
style: Clean code
polarbeargo Feb 11, 2026
02498b2
Merge origin/main into feature/rag-improvements
polarbeargo Feb 12, 2026
65ba0d9
feat: Add Vision tab alongside RAG (7 tabs total)
polarbeargo Feb 12, 2026
929f139
fix: Resolve App.tsx merge conflict - combine optional LlamaCPP with …
polarbeargo Feb 12, 2026
a775e0c
fix: Stub ToolCallingBridge functions pending commons library updates
polarbeargo Feb 12, 2026
fb28aa9
fix: add missing @react-navigation/native-stack dependency for tab na…
polarbeargo Feb 12, 2026
c7666b8
style: Clean code
polarbeargo Feb 12, 2026
0bf2002
style: Clean code
polarbeargo Feb 12, 2026
b1c238c
fix: Remove unused imports in RunAnywhere example
polarbeargo Feb 12, 2026
6ad0751
style: Clean code
polarbeargo Feb 12, 2026
7b46656
style: Clean code
polarbeargo Feb 12, 2026
49ad51f
refactor(rag): add proper error handling for ONNX Runtime C API calls
polarbeargo Feb 12, 2026
4bb1c04
refactor(rag): fix critical memory safety and data integrity bugs in …
polarbeargo Feb 12, 2026
010391a
refactor(rag): enhance ONNX embedding provider with error handling
polarbeargo Feb 12, 2026
fb8844d
feat(rag): Enhance error handling and debugging for RAG module
polarbeargo Feb 13, 2026
7fab0ec
fix(rag): Harden vector store load/search error handling
polarbeargo Feb 13, 2026
78deaa2
feat(rag): Add vocab-backed tokenizer and strict embedding setup
polarbeargo Feb 13, 2026
0f6a7e5
feat(rag): add LRU cache to tokenizer for repeated inputs
polarbeargo Feb 13, 2026
8bc99f1
feat(rag): add NEON SIMD tokenization with safe fallback
polarbeargo Feb 13, 2026
46e2e22
fix: modernize Metro config and add secure storage method compatibility
polarbeargo Feb 13, 2026
c7a061d
fix(rag): correct Android C++ lib name and regenerate Nitrogen outputs
polarbeargo Feb 13, 2026
97d8cbb
fix(react-native): Fix RAG module initialization and improve core fun…
polarbeargo Feb 14, 2026
0acf6e5
Merge branch 'main' into feature/rag-improvements
polarbeargo Feb 16, 2026
2d57189
fix(react-native/rag): Refactor iOS build to use commons toolchain sy…
polarbeargo Feb 16, 2026
4e3adba
fix(react-native/core): Add framework search paths for RACommons.xcfr…
polarbeargo Feb 16, 2026
5118e46
fix(react-native/ios): resolve XCFramework and header path issues for…
polarbeargo Feb 16, 2026
c4d5235
Optimize RAG backend: reduce lock contention and fix ORT API version
polarbeargo Feb 17, 2026
bbda758
Add GTest thread-safety coverage for RAG backend
polarbeargo Feb 17, 2026
a081c63
Add NDK 26 rebuild helper for Android RAG
polarbeargo Feb 17, 2026
0326f8e
Fix suffix-only model extension stripping
polarbeargo Feb 17, 2026
4d7c431
Harden RAG pipeline creation on failure
polarbeargo Feb 17, 2026
87c9b8f
test: Add comprehensive unit tests for RAG backend components
polarbeargo Feb 17, 2026
f93880d
docs(android): document React Native RAG app build workflow
polarbeargo Feb 17, 2026
c012679
fixed rag for ios-react-native
VyasGuru Feb 19, 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
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,12 @@ lint/reports/
*.rar
hs_err_pid*

# Node.js / NPM / Yarn
node_modules/
.npm
.yarn/cache
.yarn/install-state.gz

# Flutter/Dart
.dart_tool/
.flutter-plugins
Expand Down Expand Up @@ -365,6 +371,8 @@ sdk/runanywhere-flutter/android/*.aar

# React Native - Pre-built xcframeworks (build artifacts)
sdk/runanywhere-react-native/packages/*/ios/xcframeworks/
tools/
sdk/runanywhere-react-native/packages/rag/ios/.testlocal


# Node
Expand Down
32 changes: 32 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# pnpm configuration for RunAnywhere monorepo

# Use node-modules linker for better React Native compatibility
node-linker=node-modules

# Hoist all dependencies to root node_modules for consistency
shamefully-hoist=true

# Don't fail on missing peer dependencies
strict-peer-dependencies=false

# Use all available cores for faster installation
prefer-offline=false

# Verify package integrity
verify-store-integrity=true

# Use lockfile for reproducible installs
lockfile=true

# Depth for module hoisting
hoist-pattern[]=*
hoist-pattern[]=*/**

# Store location (default is fine)
# store-dir=.pnpm-store

# For CI/CD environments
# ci-mode=true

# For development - allow same version installs
# save-exact=false
Empty file added .yarnrc.yml
Empty file.
Loading
Loading