Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
e9b4ac4
Add .gitignore to exclude Python environment files and API keys
SLxnoat Jun 7, 2026
d0a80aa
Enhance memory management and RAG processing capabilities
SLxnoat Jun 7, 2026
eb7d167
Integrate RAG processing into JarvisLive for enhanced user input hand…
SLxnoat Jun 7, 2026
95a259c
Refactor RAG processing: move JarvisRAGProcessor to memory module and…
SLxnoat Jun 7, 2026
7498e61
Update .gitignore and enhance memory manager for Gemini API integration
SLxnoat Jun 7, 2026
fd298db
Update system instruction in JarvisRAGProcessor for clarity
SLxnoat Jun 10, 2026
2afcef7
Refactor web_search.py: integrate Serper API for search results and e…
SLxnoat Jun 10, 2026
d8e4c06
feat: upgrade memory to modern genai sdk and fix configs
SLxnoat Jun 10, 2026
dbdbe8e
Update .gitignore to include .env file for environment variable manag…
SLxnoat Jun 10, 2026
d4b7947
Update .gitignore to include additional database files and environmen…
SLxnoat Jun 10, 2026
f4597f7
Merge branch 'main' into feat-patch_memory
SLxnoat Jun 10, 2026
4af26db
Merge pull request #1 from SLxnoat/feat-patch_memory
SLxnoat Jun 10, 2026
1379a4d
Merge branch 'main' into feat-patch_websearch
SLxnoat Jun 10, 2026
730f69b
Merge pull request #2 from SLxnoat/feat-patch_websearch
SLxnoat Jun 10, 2026
52dc4fe
chore: remove outdated readme file
SLxnoat Jun 10, 2026
a4d2a84
Merge branch 'main' of https://github.com/SLxnoat/Project-J.A.R.V.I.S
SLxnoat Jun 10, 2026
c0b3b27
refactor: streamline web search functionality and integrate unified c…
SLxnoat Jun 10, 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
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Python environment and bytecode
__pycache__/
*.py[cod]
*.pyo
*.pyd

# Virtual environment
jarvis-env/

# Local memory and database files
jarvis_memory/
*.db
*.sqlite
*.sqlite3

# ChromaDB persistence artifacts
chroma_db/
*.parquet
*.pkl
*.jsonl

# API keys
config/api_keys.json

.env
Loading