Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch:

env:
PYPI_PROJECT_NAME: agent-ref
PYPI_PROJECT_NAME: agent-checkpoint-cas

permissions:
contents: read
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/agent-ref/
url: https://pypi.org/project/agent-checkpoint-cas/
permissions:
id-token: write

Expand Down
34 changes: 28 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,40 @@ RSS values across machines.

## Install

The PyPI distribution is `agent-checkpoint-cas`; the Python import package stays
`agentref`.

With pip:

```bash
pip install agentref
pip install agent-checkpoint-cas
```

Optional framework integrations are split by extra:

```bash
pip install "agentref[langgraph]"
pip install "agentref[llamaindex]"
pip install "agentref[autogen]"
pip install "agentref[postgres]"
pip install "agentref[all]"
pip install "agent-checkpoint-cas[langgraph]"
pip install "agent-checkpoint-cas[llamaindex]"
pip install "agent-checkpoint-cas[autogen]"
pip install "agent-checkpoint-cas[postgres]"
pip install "agent-checkpoint-cas[all]"
```

With uv in a project:

```bash
uv add agent-checkpoint-cas
uv add "agent-checkpoint-cas[langgraph]"
uv add "agent-checkpoint-cas[llamaindex]"
uv add "agent-checkpoint-cas[autogen]"
uv add "agent-checkpoint-cas[postgres]"
uv add "agent-checkpoint-cas[all]"
```

With uv in the current environment:

```bash
uv pip install agent-checkpoint-cas
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"

[project]
name = "agentref"
name = "agent-checkpoint-cas"
version = "0.1.0"
description = "Type-guided externalized state for LLM agent frameworks."
readme = "README.md"
Expand Down
Loading