Skip to content
Open
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,12 +153,12 @@ generally follow this pattern:
### Installing the AP2 Types Package

The protocol's core objects are defined under
[`code/sdk/python/ap2/`](code/sdk/python/ap2/) — Pydantic models in
[`models/`](code/sdk/python/ap2/models/) and
[`sdk/generated/`](code/sdk/python/ap2/sdk/generated/), canonical JSON schemas
in [`schemas/`](code/sdk/python/ap2/schemas/). A PyPI package will be published
at a later time. Until then, you can install the package directly using this
command:
[`code/sdk/`](code/sdk/) — canonical JSON schemas in
[`schemas/`](code/sdk/schemas/), Pydantic models in
[`python/ap2/models/`](code/sdk/python/ap2/models/), and generated Python models
in [`python/ap2/sdk/generated/`](code/sdk/python/ap2/sdk/generated/). A PyPI
package will be published at a later time. Until then, you can install the
package directly using this command:

```sh
uv pip install git+https://github.com/google-agentic-commerce/AP2.git@main
Expand Down
2 changes: 1 addition & 1 deletion code/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ It contains:

- `sdk/python/ap2/models/` — Pydantic models for carts, mandates, receipts,
and payment requests.
- `sdk/python/ap2/schemas/` — canonical JSON Schemas and the generator used
- `sdk/schemas/` — canonical JSON Schemas and the generator used
to emit the Python models in `sdk/python/ap2/sdk/generated/`.
- `sdk/python/ap2/sdk/` — the runtime SDK: mandate wrappers, chain
verification, SD-JWT helpers, constraints, disclosure metadata.
Expand Down
6 changes: 3 additions & 3 deletions code/samples/go/scenarios/a2a/human-present/cards/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,9 @@ If running manually, stop each process individually.

## Resources

- [AP2 Protocol Documentation](../../../../README.md)
- [Python Sample (with Shopping Agent)](../../../../python/scenarios/a2a/human-present/cards/README.md)
- [Go Implementation Guide](../../README.md)
- [AP2 Protocol Documentation](../../../../../../../README.md)
- [Python Sample (with Shopping Agent)](../../../../../python/scenarios/a2a/human-present/cards/README.md)
- [Go Implementation Guide](../../../../README.md)

## License

Expand Down
Loading