Skip to content

Commit f52ca9d

Browse files
authored
Merge pull request #24 from redis-developer/client/v0.9.0b1
Cut client 0.9.0b1
2 parents 79d09ae + 155533f commit f52ca9d

File tree

4 files changed

+38
-3089
lines changed

4 files changed

+38
-3089
lines changed

.github/workflows/python-tests.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,39 @@ jobs:
6969
uv run pytest --run-api-tests
7070
env:
7171
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
72+
73+
docker:
74+
needs: test
75+
runs-on: ubuntu-latest
76+
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
77+
steps:
78+
- name: Checkout
79+
uses: actions/checkout@v4
80+
81+
- name: Set up Docker Buildx
82+
uses: docker/setup-buildx-action@v3
83+
84+
- name: Log in to Docker Hub
85+
uses: docker/login-action@v3
86+
with:
87+
username: ${{ secrets.DOCKER_USERNAME }}
88+
password: ${{ secrets.DOCKER_TOKEN }}
89+
90+
- name: Extract version from __init__.py
91+
id: version
92+
run: |
93+
VERSION=$(grep '__version__ =' agent_memory_server/__init__.py | sed 's/__version__ = "\(.*\)"/\1/' || echo "latest")
94+
echo "version=$VERSION" >> $GITHUB_OUTPUT
95+
echo "Version: $VERSION"
96+
97+
- name: Build and push Docker image
98+
uses: docker/build-push-action@v5
99+
with:
100+
context: .
101+
file: ./Dockerfile
102+
push: true
103+
tags: |
104+
andrewbrookins510/agent-memory-server:latest
105+
andrewbrookins510/agent-memory-server:${{ steps.version.outputs.version }}
106+
cache-from: type=gha
107+
cache-to: type=gha,mode=max

agent-memory-client/agent_memory_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
memory management capabilities for AI agents and applications.
66
"""
77

8-
__version__ = "0.9.0"
8+
__version__ = "0.9.0b1"
99

1010
from .client import MemoryAPIClient, MemoryClientConfig, create_memory_client
1111
from .exceptions import (

agent_memory_server/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Redis Agent Memory Server - A memory system for conversational AI."""
22

3-
__version__ = "0.9.0"
3+
__version__ = "0.9.0b1"

0 commit comments

Comments
 (0)