Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
2d3fb36
Update new memory feature
rexdivakar Nov 7, 2025
68262ac
Add advanced memory features: temporal analysis, observability, confl…
rexdivakar Nov 8, 2025
fc70b30
Fix ruff linting errors in integration test
rexdivakar Nov 8, 2025
f1d33a7
Ensure perfect SaaS API and library integration parity
rexdivakar Nov 8, 2025
a9e6843
Add comprehensive SaaS-Library integration report
rexdivakar Nov 8, 2025
a48d926
Add comprehensive deployment readiness verification
rexdivakar Nov 8, 2025
2795e91
Updated memory elements
rexdivakar Nov 8, 2025
ae71665
memory tracking added
rexdivakar Nov 9, 2025
e96b5c8
memory update
rexdivakar Nov 9, 2025
18716d8
adaptive learning
rexdivakar Nov 9, 2025
86df3b4
Enhance compatibility tests and add user and API key metering script
rexdivakar Nov 10, 2025
7452b54
Refactor type hints and improve code clarity across multiple modules
rexdivakar Nov 22, 2025
1f6b913
Remove legacy test scripts for SaaS API and user metering functionality
rexdivakar Nov 22, 2025
0463459
Refactor memory scheduler status return and enhance integration test …
rexdivakar Nov 23, 2025
af25aa6
Refactor code structure for improved readability and maintainability
rexdivakar Nov 23, 2025
a721796
Refactor test scripts for improved readability and consistency
rexdivakar Nov 23, 2025
49e2b19
Refactor Pydantic model configurations and enhance memory client comp…
rexdivakar Nov 23, 2025
57b5542
Refactor import statements for consistency and clarity
rexdivakar Nov 23, 2025
a314765
Refactor return statements to include explicit variable assignments f…
rexdivakar Nov 24, 2025
39647d2
Refactor CI workflow, Dockerfile, and documentation for improved inst…
rexdivakar Nov 24, 2025
30a1643
Refactor function calls for improved readability by formatting argume…
rexdivakar Nov 24, 2025
509ffbf
Remove end-to-end test suite for HippocampAI
rexdivakar Nov 24, 2025
e92d133
Update Dockerfile and pyproject.toml for improved dependency manageme…
rexdivakar Nov 24, 2025
97fca0a
Bump version to 0.3.0 and update related documentation for improved c…
rexdivakar Nov 24, 2025
dff0a74
Update src/hippocampai/client.py
rexdivakar Nov 24, 2025
88a362b
Update src/hippocampai/client.py
rexdivakar Nov 24, 2025
26749dc
Enhance security for admin routes and memory access in async_app.py a…
rexdivakar Nov 24, 2025
c0e7582
Update src/hippocampai/client.py
rexdivakar Nov 24, 2025
f002b32
Enhance security in memory health calculations by capping input sizes…
rexdivakar Nov 24, 2025
3c66dc1
Update src/hippocampai/client.py
rexdivakar Nov 24, 2025
5c77ae0
Refactor memory access tracking to use asynchronous updates with copi…
rexdivakar Nov 24, 2025
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
4 changes: 4 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,7 @@ GRAFANA_ROOT_URL=http://localhost:3000
# ENABLE_AUTH=true
# JWT_SECRET=your_jwt_secret_here
# RATE_LIMIT_PER_MINUTE=60


HIPPOCAMPAI_API_KEY="hc_live_your_key_here"
HIPPOCAMPAI_USER_AUTH="true"
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
path: |
~/.cache/pip
${{ env.pythonLocation }}
key: ${{ runner.os }}-python-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml', '**/requirements.txt') }}
key: ${{ runner.os }}-python-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}
restore-keys: |
${{ runner.os }}-python-${{ matrix.python-version }}-

Expand Down
Loading
Loading