Skip to content

Tags: getzep/zep

Tags

zep-crewai-v1.1.1

Toggle zep-crewai-v1.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix: Update CrewAI integration for compatibility with v0.186.0+ (#428)

* fix: Update CrewAI integration for compatibility with v0.186.0+

Changes external memory search results to use "context" key instead of "memory"
to align with CrewAI's updated external memory interface. This fixes KeyError
issues when using Zep with CrewAI v0.186.0 and later versions.

Changes:
- Updated ZepUserStorage, ZepGraphStorage, and ZepStorage search methods
- Fixed test assertions to expect "context" key in results
- Updated example scripts to display results using "context" key
- All 60 tests pass, examples run successfully with CrewAI v0.186.1

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

* chore: Bump version to 1.1.1

Update version for CrewAI v0.186.0+ compatibility bug fix.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>

---------

Co-authored-by: Claude <noreply@anthropic.com>

v1.0.2

Toggle v1.0.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(postgres): Add URL escaping to database connection string (#380)

* feat(postgres): Add URL escaping to database connection string

Add url.QueryEscape() to properly handle special characters in PostgreSQL
connection parameters. This prevents potential connection issues and improves
security when credentials contain special characters.

Changes:
- Escape username with url.QueryEscape()
- Escape password with url.QueryEscape()
- Escape hostname with url.QueryEscape()
- Escape database name with url.QueryEscape()

Example special characters handled:
- @ in usernames (e.g., user@domain.com)
- Special chars in passwords (e.g., *, (, ), @)
- Special chars in database names

This change ensures the DSN string is properly formatted regardless of the
characters present in the connection parameters.

Related to PostgreSQL connection string format:
postgres://username:password@hostname:port/database

* Update src/lib/config/config.go

Remove url.QueryEscape for Host

Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>

* Update config.go to match spacing format

---------

Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>

v1.0.1

Toggle v1.0.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Mention telemetry in README (#378)

* Update README.md

* Update README.md

Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>

---------

Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com>

v1.0.0

Toggle v1.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: Fix permissions on release runner (#364)

v0.27.2

Toggle v0.27.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add gpt-4o-mini to MaxLLMTokensMap (#356)

v0.27.1

Toggle v0.27.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Updating default open ai model in config and tests (#354)

* updating config.yaml comment for available openai llm models

* using gpt-4o-mini as default models for openai tests

* changing default openai model in config.yaml to gpt-4o-mini

* change in comment

* typo

---------

Co-authored-by: bricemacias-rocketcode <brice.macias@therocketcode.com>

v0.27.0

Toggle v0.27.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump github.com/hashicorp/go-retryablehttp from 0.7.4 to 0.7.7 (#349)

Bumps [github.com/hashicorp/go-retryablehttp](https://github.com/hashicorp/go-retryablehttp) from 0.7.4 to 0.7.7.
- [Changelog](https://github.com/hashicorp/go-retryablehttp/blob/main/CHANGELOG.md)
- [Commits](hashicorp/go-retryablehttp@v0.7.4...v0.7.7)

---
updated-dependencies:
- dependency-name: github.com/hashicorp/go-retryablehttp
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

v0.26.0

Toggle v0.26.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
new anthropic models (#347)

v0.25.0

Toggle v0.25.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
use expentional backoff for retry (#330)

v0.24.0

Toggle v0.24.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
use pg_try_advisory_lock for metadata updates (#329)