agent-starter-pack 0.14.0__py3-none-any.whl → 0.14.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent-starter-pack
3
- Version: 0.14.0
3
+ Version: 0.14.1
4
4
  Summary: CLI to bootstrap production-ready Google Cloud GenAI agent projects from templates.
5
5
  Author-email: Google LLC <agent-starter-pack@google.com>
6
6
  License: Apache-2.0
@@ -69,7 +69,7 @@ agent-starter-pack create my-awesome-agent
69
69
 
70
70
  If you have [`uv`](https://github.com/astral-sh/uv) installed, you can create and set up your project with a single command:
71
71
  ```bash
72
- uvx agent-starter-pack create my-fullstack-agent
72
+ uvx agent-starter-pack create my-awesome-agent
73
73
  ```
74
74
  This command handles creating the project without needing to pre-install the package into a virtual environment.
75
75
  </details>
@@ -133,6 +133,7 @@ This starter pack covers all aspects of Agent development, from prototyping and
133
133
  - Python 3.10+
134
134
  - [Google Cloud SDK](https://cloud.google.com/sdk/docs/install)
135
135
  - [Terraform](https://developer.hashicorp.com/terraform/downloads) (for deployment)
136
+ - [Make](https://www.gnu.org/software/make/) (for development tasks)
136
137
 
137
138
 
138
139
  ## 📚 Documentation
@@ -39,7 +39,7 @@ llm.txt,sha256=3beEnDz6DIQT345TibJCi60Mw8xh2PaY-lFc-EJpR8s,15380
39
39
  src/base_template/.gitignore,sha256=Fq0w34x4sfbwP4RqDqh6hdHNYRUEsFNI-9XONzLWBIs,2580
40
40
  src/base_template/GEMINI.md,sha256=WzscHWlQeYkKORZ-453P8KM9IHuj1kAxW-69c7Ytuwk,133
41
41
  src/base_template/Makefile,sha256=DyOZKzcP4i6oBHx_snqlsOK99JuKWjlPVAy9Tgfc_wg,7824
42
- src/base_template/README.md,sha256=ywTmrlWmivgHAtzXQCZqNu_Hfxp51QTnX4USNgGk6kU,10040
42
+ src/base_template/README.md,sha256=_TjEIWOK75GfaG3qfaOQdfC9J5AlPo_dckRY7e84dlM,10184
43
43
  src/base_template/pyproject.toml,sha256=dTyxaWetB-XCKQEDV3lXxAUxtBEpustNdlAEcT8ZZpo,2932
44
44
  src/base_template/deployment/README.md,sha256=gZJvSWdQh_Mi-bZ3dmuPv7fMezIw04fgN5tq7KgglPw,692
45
45
  src/base_template/deployment/terraform/apis.tf,sha256=KX8Oe2gjT-gh9Bkntz9yIAyRjPc1gZvwOhroJ6NZVp4,1513
@@ -168,8 +168,8 @@ src/resources/locks/uv-live_api-cloud_run.lock,sha256=AMgJt_aeoXU3LDvZv4iph9XCVs
168
168
  src/utils/generate_locks.py,sha256=6V1B8V2BEuevWnXUsxZVTrLjXwFRII8UfsIGrQqZxVs,4320
169
169
  src/utils/lock_utils.py,sha256=IFOMUWtb-ypm2Y8w8J5y2oI_-MaPuwPF_JOAAlnNudA,2275
170
170
  src/utils/watch_and_rebuild.py,sha256=vP4yIiA7E_lj5sfQdJUl8TXas6V7msDg8XWUutAC05Q,6679
171
- agent_starter_pack-0.14.0.dist-info/METADATA,sha256=gbA6g4uKpEnsSpWnb3zhMxLqzdM9KWLoHXVjTuV5ofw,11408
172
- agent_starter_pack-0.14.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
173
- agent_starter_pack-0.14.0.dist-info/entry_points.txt,sha256=U7uCxR7YulIhZ0L8R8Hui0Bsy6J7oyESBeDYJYMrQjA,56
174
- agent_starter_pack-0.14.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
175
- agent_starter_pack-0.14.0.dist-info/RECORD,,
171
+ agent_starter_pack-0.14.1.dist-info/METADATA,sha256=A_fmmd_c4apfEJTNZNqaprVhNyrtYFJXqAANPk0kIHA,11475
172
+ agent_starter_pack-0.14.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
173
+ agent_starter_pack-0.14.1.dist-info/entry_points.txt,sha256=U7uCxR7YulIhZ0L8R8Hui0Bsy6J7oyESBeDYJYMrQjA,56
174
+ agent_starter_pack-0.14.1.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
175
+ agent_starter_pack-0.14.1.dist-info/RECORD,,
@@ -33,7 +33,7 @@ This project is organized as follows:
33
33
  ## Requirements
34
34
 
35
35
  Before you begin, ensure you have:
36
- - **uv**: Python package manager - [Install](https://docs.astral.sh/uv/getting-started/installation/)
36
+ - **uv**: Python package manager (used for all dependency management in this project) - [Install](https://docs.astral.sh/uv/getting-started/installation/) ([add packages](https://docs.astral.sh/uv/concepts/dependencies/) with `uv add <package>`)
37
37
  - **Google Cloud SDK**: For GCP services - [Install](https://cloud.google.com/sdk/docs/install)
38
38
  - **Terraform**: For infrastructure deployment - [Install](https://developer.hashicorp.com/terraform/downloads)
39
39
  - **make**: Build automation tool - [Install](https://www.gnu.org/software/make/) (pre-installed on most Unix-based systems)