agent-starter-pack 0.17.2__py3-none-any.whl → 0.17.4__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.
Potentially problematic release.
This version of agent-starter-pack might be problematic. Click here for more details.
- agent_starter_pack/agents/crewai_coding_crew/.template/templateconfig.yaml +1 -0
- agent_starter_pack/agents/langgraph_base_react/.template/templateconfig.yaml +1 -0
- agent_starter_pack/base_template/Makefile +14 -10
- agent_starter_pack/cli/commands/create.py +5 -3
- agent_starter_pack/cli/commands/enhance.py +6 -7
- agent_starter_pack/cli/utils/template.py +16 -18
- agent_starter_pack/deployment_targets/agent_engine/{{cookiecutter.agent_directory}}/agent_engine_app.py +1 -1
- {agent_starter_pack-0.17.2.dist-info → agent_starter_pack-0.17.4.dist-info}/METADATA +2 -2
- {agent_starter_pack-0.17.2.dist-info → agent_starter_pack-0.17.4.dist-info}/RECORD +12 -12
- {agent_starter_pack-0.17.2.dist-info → agent_starter_pack-0.17.4.dist-info}/WHEEL +0 -0
- {agent_starter_pack-0.17.2.dist-info → agent_starter_pack-0.17.4.dist-info}/entry_points.txt +0 -0
- {agent_starter_pack-0.17.2.dist-info → agent_starter_pack-0.17.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -79,6 +79,20 @@ playground:{%- if cookiecutter.is_adk_live %} build-frontend-if-needed{%- endif
|
|
|
79
79
|
{%- endif %}
|
|
80
80
|
{%- endfor %}
|
|
81
81
|
{%- endif %}
|
|
82
|
+
{%- if cookiecutter.deployment_target == 'cloud_run' or (cookiecutter.deployment_target == 'agent_engine' and cookiecutter.is_adk_live) %}
|
|
83
|
+
|
|
84
|
+
# ==============================================================================
|
|
85
|
+
# Local Development Commands
|
|
86
|
+
# ==============================================================================
|
|
87
|
+
|
|
88
|
+
# Launch local development server with hot-reload
|
|
89
|
+
local-backend:
|
|
90
|
+
{%- if cookiecutter.deployment_target == 'cloud_run' %}
|
|
91
|
+
uv run uvicorn {{cookiecutter.agent_directory}}.server:app --host localhost --port 8000 --reload
|
|
92
|
+
{%- else %}
|
|
93
|
+
uv run python -m {{cookiecutter.agent_directory}}.utils.expose_app --mode local --port 8000 --local-agent {{cookiecutter.agent_directory}}.agent.root_agent
|
|
94
|
+
{%- endif %}
|
|
95
|
+
{%- endif %}
|
|
82
96
|
{%- if cookiecutter.is_adk_live %}
|
|
83
97
|
|
|
84
98
|
# ==============================================================================
|
|
@@ -101,18 +115,8 @@ build-frontend-if-needed:
|
|
|
101
115
|
else \
|
|
102
116
|
echo "Frontend build is up to date. Skipping build..."; \
|
|
103
117
|
fi
|
|
104
|
-
{%- if cookiecutter.deployment_target == 'cloud_run' %}
|
|
105
|
-
|
|
106
|
-
# Launch local development server with hot-reload
|
|
107
|
-
local-backend:
|
|
108
|
-
uv run uvicorn {{cookiecutter.agent_directory}}.server:app --host localhost --port 8000 --reload
|
|
109
|
-
{%- endif %}
|
|
110
118
|
{%- if cookiecutter.deployment_target == 'agent_engine' %}
|
|
111
119
|
|
|
112
|
-
# Launch local development server with hot-reload
|
|
113
|
-
local-backend:
|
|
114
|
-
uv run python -m {{cookiecutter.agent_directory}}.utils.expose_app --mode local --port 8000 --local-agent {{cookiecutter.agent_directory}}.agent.root_agent
|
|
115
|
-
|
|
116
120
|
# Connect to remote deployed agent
|
|
117
121
|
playground-remote: build-frontend-if-needed
|
|
118
122
|
@echo "==============================================================================="
|
|
@@ -470,7 +470,9 @@ def create(
|
|
|
470
470
|
# Load template configuration based on whether it's remote or local
|
|
471
471
|
if template_source_path:
|
|
472
472
|
# Prepare CLI overrides for remote template config
|
|
473
|
-
cli_overrides
|
|
473
|
+
# Initialize cli_overrides if not provided (e.g., from enhance command)
|
|
474
|
+
if cli_overrides is None:
|
|
475
|
+
cli_overrides = {}
|
|
474
476
|
if base_template:
|
|
475
477
|
cli_overrides["base_template"] = base_template
|
|
476
478
|
|
|
@@ -491,7 +493,7 @@ def create(
|
|
|
491
493
|
logging.debug(f"Using base template: {base_template_name}")
|
|
492
494
|
|
|
493
495
|
base_template_path = (
|
|
494
|
-
pathlib.Path(__file__).parent.parent.parent
|
|
496
|
+
pathlib.Path(__file__).parent.parent.parent
|
|
495
497
|
/ "agents"
|
|
496
498
|
/ base_template_name
|
|
497
499
|
/ ".template"
|
|
@@ -504,7 +506,7 @@ def create(
|
|
|
504
506
|
template_path = template_source_path / ".template"
|
|
505
507
|
else:
|
|
506
508
|
template_path = (
|
|
507
|
-
pathlib.Path(__file__).parent.parent.parent
|
|
509
|
+
pathlib.Path(__file__).parent.parent.parent
|
|
508
510
|
/ "agents"
|
|
509
511
|
/ final_agent
|
|
510
512
|
/ ".template"
|
|
@@ -329,10 +329,7 @@ def enhance(
|
|
|
329
329
|
console.print()
|
|
330
330
|
|
|
331
331
|
# Determine agent specification based on template_path
|
|
332
|
-
|
|
333
|
-
if base_template:
|
|
334
|
-
agent_spec = base_template
|
|
335
|
-
elif template_path == pathlib.Path("."):
|
|
332
|
+
if template_path == pathlib.Path("."):
|
|
336
333
|
# Current directory - use local@ syntax
|
|
337
334
|
agent_spec = "local@."
|
|
338
335
|
elif template_path.is_dir():
|
|
@@ -367,6 +364,8 @@ def enhance(
|
|
|
367
364
|
selected_base_template = display_base_template_selection(
|
|
368
365
|
original_base_template_name
|
|
369
366
|
)
|
|
367
|
+
# Always set base_template to the selected value (even if unchanged)
|
|
368
|
+
base_template = selected_base_template
|
|
370
369
|
if selected_base_template != original_base_template_name:
|
|
371
370
|
# Update CLI overrides with the selected base template
|
|
372
371
|
cli_overrides["base_template"] = selected_base_template
|
|
@@ -374,7 +373,6 @@ def enhance(
|
|
|
374
373
|
if agent_directory:
|
|
375
374
|
cli_overrides["settings"] = cli_overrides.get("settings", {})
|
|
376
375
|
cli_overrides["settings"]["agent_directory"] = agent_directory
|
|
377
|
-
base_template = selected_base_template
|
|
378
376
|
console.print(
|
|
379
377
|
f"✅ Selected base template: [cyan]{selected_base_template}[/cyan]"
|
|
380
378
|
)
|
|
@@ -582,9 +580,10 @@ def enhance(
|
|
|
582
580
|
final_cli_overrides["base_template"] = base_template
|
|
583
581
|
|
|
584
582
|
# For current directory templates, ensure agent_directory is included in cli_overrides
|
|
585
|
-
|
|
583
|
+
# final_agent_directory is set from interactive selection or CLI/detection
|
|
584
|
+
if template_path == pathlib.Path(".") and final_agent_directory:
|
|
586
585
|
final_cli_overrides["settings"] = final_cli_overrides.get("settings", {})
|
|
587
|
-
final_cli_overrides["settings"]["agent_directory"] =
|
|
586
|
+
final_cli_overrides["settings"]["agent_directory"] = final_agent_directory
|
|
588
587
|
|
|
589
588
|
# Call the create command with in-folder mode enabled
|
|
590
589
|
ctx.invoke(
|
|
@@ -579,8 +579,8 @@ def process_template(
|
|
|
579
579
|
)
|
|
580
580
|
# Get agent directory from config early for use in file copying
|
|
581
581
|
# Load config early to get agent_directory
|
|
582
|
-
if
|
|
583
|
-
early_config = remote_config
|
|
582
|
+
if remote_config:
|
|
583
|
+
early_config = remote_config
|
|
584
584
|
else:
|
|
585
585
|
template_path = pathlib.Path(template_dir)
|
|
586
586
|
early_config = load_template_config(template_path)
|
|
@@ -620,25 +620,16 @@ def process_template(
|
|
|
620
620
|
)
|
|
621
621
|
copy_data_ingestion_files(project_template, datastore)
|
|
622
622
|
|
|
623
|
-
# 4.
|
|
624
|
-
# Load template config
|
|
625
|
-
template_config = load_template_config(pathlib.Path(template_dir))
|
|
626
|
-
frontend_type = template_config.get("settings", {}).get(
|
|
627
|
-
"frontend_type", DEFAULT_FRONTEND
|
|
628
|
-
)
|
|
629
|
-
copy_frontend_files(frontend_type, project_template)
|
|
630
|
-
logging.debug(f"4. Processed frontend files for type: {frontend_type}")
|
|
631
|
-
|
|
632
|
-
# 6. Skip remote template files during cookiecutter processing
|
|
623
|
+
# 4. Skip remote template files during cookiecutter processing
|
|
633
624
|
# Remote files will be copied after cookiecutter to avoid Jinja conflicts
|
|
634
625
|
if is_remote and remote_template_path:
|
|
635
626
|
logging.debug(
|
|
636
|
-
"
|
|
627
|
+
"4. Skipping remote template files during cookiecutter processing - will copy after templating"
|
|
637
628
|
)
|
|
638
629
|
|
|
639
630
|
# Load and validate template config first
|
|
640
|
-
if
|
|
641
|
-
config = remote_config
|
|
631
|
+
if remote_config:
|
|
632
|
+
config = remote_config
|
|
642
633
|
else:
|
|
643
634
|
template_path = pathlib.Path(template_dir)
|
|
644
635
|
config = load_template_config(template_path)
|
|
@@ -659,7 +650,14 @@ def process_template(
|
|
|
659
650
|
# Use the already loaded config
|
|
660
651
|
template_config = config
|
|
661
652
|
|
|
662
|
-
#
|
|
653
|
+
# Process frontend files (after config is properly loaded with CLI overrides)
|
|
654
|
+
frontend_type = template_config.get("settings", {}).get(
|
|
655
|
+
"frontend_type", DEFAULT_FRONTEND
|
|
656
|
+
)
|
|
657
|
+
copy_frontend_files(frontend_type, project_template)
|
|
658
|
+
logging.debug(f"5. Processed frontend files for type: {frontend_type}")
|
|
659
|
+
|
|
660
|
+
# 6. Copy agent-specific files to override base template (using final config)
|
|
663
661
|
if agent_path.exists():
|
|
664
662
|
agent_directory = get_agent_directory(template_config, cli_overrides)
|
|
665
663
|
|
|
@@ -673,7 +671,7 @@ def process_template(
|
|
|
673
671
|
target_agent_folder = project_template / agent_directory
|
|
674
672
|
if source_agent_folder.exists():
|
|
675
673
|
logging.debug(
|
|
676
|
-
f"
|
|
674
|
+
f"6. Copying agent folder {template_agent_directory} -> {agent_directory} with override"
|
|
677
675
|
)
|
|
678
676
|
copy_files(
|
|
679
677
|
source_agent_folder,
|
|
@@ -689,7 +687,7 @@ def process_template(
|
|
|
689
687
|
agent_folder = agent_path / folder
|
|
690
688
|
project_folder = project_template / folder
|
|
691
689
|
if agent_folder.exists():
|
|
692
|
-
logging.debug(f"
|
|
690
|
+
logging.debug(f"6. Copying {folder} folder with override")
|
|
693
691
|
copy_files(
|
|
694
692
|
agent_folder,
|
|
695
693
|
project_folder,
|
|
@@ -319,10 +319,10 @@ def deploy_agent_engine_app(
|
|
|
319
319
|
# Common configuration for both create and update operations
|
|
320
320
|
labels: dict[str, str] = {}
|
|
321
321
|
{%- if cookiecutter.agent_garden %}
|
|
322
|
-
labels["deployed-with"] = "agent-garden"
|
|
323
322
|
{%- if cookiecutter.agent_sample_id and cookiecutter.agent_sample_publisher %}
|
|
324
323
|
labels["vertex-agent-sample-id"] = "{{cookiecutter.agent_sample_id}}"
|
|
325
324
|
labels["vertex-agent-sample-publisher"] = "{{cookiecutter.agent_sample_publisher}}"
|
|
325
|
+
labels["deployed-with"] = "agent-garden"
|
|
326
326
|
{%- endif %}
|
|
327
327
|
{%- endif %}
|
|
328
328
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-starter-pack
|
|
3
|
-
Version: 0.17.
|
|
3
|
+
Version: 0.17.4
|
|
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
|
|
@@ -24,7 +24,7 @@ Description-Content-Type: text/markdown
|
|
|
24
24
|
|
|
25
25
|
# 🚀 Agent Starter Pack
|
|
26
26
|
|
|
27
|
-
 [](https://youtu.be/jHt-ZVD660g) [](https://googlecloudplatform.github.io/agent-starter-pack/) <a href="https://studio.firebase.google.com/new?template=https%3A%2F%2Fgithub.com%2FGoogleCloudPlatform%2Fagent-starter-pack%2Ftree%2Fmain%
|
|
27
|
+
 [](https://youtu.be/jHt-ZVD660g) [](https://googlecloudplatform.github.io/agent-starter-pack/) <a href="https://studio.firebase.google.com/new?template=https%3A%2F%2Fgithub.com%2FGoogleCloudPlatform%2Fagent-starter-pack%2Ftree%2Fmain%2Fagent_starter_pack%2Fresources%2Fidx">
|
|
28
28
|
<picture>
|
|
29
29
|
<source
|
|
30
30
|
media="(prefers-color-scheme: dark)"
|
|
@@ -20,7 +20,7 @@ agent_starter_pack/agents/agentic_rag/notebooks/adk_app_testing.ipynb,sha256=hyP
|
|
|
20
20
|
agent_starter_pack/agents/agentic_rag/notebooks/evaluating_adk_agent.ipynb,sha256=SdZC1htgXtXw3oyi8d70dNVpDgUmV9T5hqiwGxM9plk,57034
|
|
21
21
|
agent_starter_pack/agents/agentic_rag/tests/integration/test_agent.py,sha256=YcwOZXa9uJqcqZN8UPikNm_dlSh9XduEfcuQa0wkby8,2170
|
|
22
22
|
agent_starter_pack/agents/crewai_coding_crew/README.md,sha256=4No7sfHQVHELARGiT3fWANJzDR0NP48ow4ct3FoPwlA,1672
|
|
23
|
-
agent_starter_pack/agents/crewai_coding_crew/.template/templateconfig.yaml,sha256=
|
|
23
|
+
agent_starter_pack/agents/crewai_coding_crew/.template/templateconfig.yaml,sha256=d5OrB8uXidtElkBtEbCdoPfySd4pprWttoSiI1iE6ZM,1080
|
|
24
24
|
agent_starter_pack/agents/crewai_coding_crew/app/agent.py,sha256=h8aC6P3XcaLSsnzENtH3Xp14onpZatWIGRx5IS8ZSyQ,1921
|
|
25
25
|
agent_starter_pack/agents/crewai_coding_crew/app/crew/crew.py,sha256=pqeeJ4txP-gcVT3PKEAw2zZ4x8g4cDlnFFbf0_zZRr4,2000
|
|
26
26
|
agent_starter_pack/agents/crewai_coding_crew/app/crew/config/agents.yaml,sha256=Cn9zTcP3C-8MvlV19cYdlxR0iIs2_FOy2gKOJLUpNRo,1154
|
|
@@ -29,13 +29,13 @@ agent_starter_pack/agents/crewai_coding_crew/notebooks/evaluating_crewai_agent.i
|
|
|
29
29
|
agent_starter_pack/agents/crewai_coding_crew/notebooks/evaluating_langgraph_agent.ipynb,sha256=PlW41fL-ji9NKkimW6u25YRLGWN2pgoX2G8w5nzIEPE,58737
|
|
30
30
|
agent_starter_pack/agents/crewai_coding_crew/tests/integration/test_agent.py,sha256=f4QgY100tXR4D70qaM8blad2cgCfxCZ5RJ2Pv3amDcs,1640
|
|
31
31
|
agent_starter_pack/agents/langgraph_base_react/README.md,sha256=KZQ0e8q9CqnIEiItH9Tc2Ceb2mC3sBcyQUo-ZAmO-zs,482
|
|
32
|
-
agent_starter_pack/agents/langgraph_base_react/.template/templateconfig.yaml,sha256=
|
|
32
|
+
agent_starter_pack/agents/langgraph_base_react/.template/templateconfig.yaml,sha256=XazFXzLbtDoCAjTsaMit2P13F0zhsDbC7p3zp_DJac0,1078
|
|
33
33
|
agent_starter_pack/agents/langgraph_base_react/app/agent.py,sha256=KyR9Doi52Q6iygJSPqc4-JAchQvgbB8ilFW58EcqQhA,1188
|
|
34
34
|
agent_starter_pack/agents/langgraph_base_react/notebooks/evaluating_langgraph_agent.ipynb,sha256=PlW41fL-ji9NKkimW6u25YRLGWN2pgoX2G8w5nzIEPE,58737
|
|
35
35
|
agent_starter_pack/agents/langgraph_base_react/tests/integration/test_agent.py,sha256=xy0A_3eGhxM8A5rc81revMztJN5GtFA-o5-CG5JzeQw,1630
|
|
36
36
|
agent_starter_pack/base_template/.gitignore,sha256=Fq0w34x4sfbwP4RqDqh6hdHNYRUEsFNI-9XONzLWBIs,2580
|
|
37
37
|
agent_starter_pack/base_template/GEMINI.md,sha256=ApNsGamVPBsrKeI77p6QxU2-sJE6k3wGwSLVvNa-YGA,126
|
|
38
|
-
agent_starter_pack/base_template/Makefile,sha256=
|
|
38
|
+
agent_starter_pack/base_template/Makefile,sha256=cOuwlWgMY1Gr5oBpgH5vZUDx2igM2RRTceEinDcZCww,11765
|
|
39
39
|
agent_starter_pack/base_template/README.md,sha256=EqNrXQ9MZAk0fm2wd69bqaoJ-YYhFiAJstB4NYt8KkM,10122
|
|
40
40
|
agent_starter_pack/base_template/pyproject.toml,sha256=Tc1hPD-o8GtU6YJAkkB2JagTJ5aObdjmjCZuGB4oCb0,3028
|
|
41
41
|
agent_starter_pack/base_template/deployment/README.md,sha256=gZJvSWdQh_Mi-bZ3dmuPv7fMezIw04fgN5tq7KgglPw,692
|
|
@@ -69,8 +69,8 @@ agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/utils/gcs.py,s
|
|
|
69
69
|
agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/utils/tracing.py,sha256=QxI-6NbiqMLFL2WSpZjNsxCPUY6xm2_maS2sRtbtG6Y,6040
|
|
70
70
|
agent_starter_pack/base_template/{{cookiecutter.agent_directory}}/utils/typing.py,sha256=cfirFUBZQOwfQjEs9EYYP2nubv6BEpVzFHPj85PTMmg,4221
|
|
71
71
|
agent_starter_pack/cli/main.py,sha256=eKi-Oi6pv2-LNiN3RYdrmvDiLXInWHkNMn8lGlkmVP4,1982
|
|
72
|
-
agent_starter_pack/cli/commands/create.py,sha256=
|
|
73
|
-
agent_starter_pack/cli/commands/enhance.py,sha256=
|
|
72
|
+
agent_starter_pack/cli/commands/create.py,sha256=n81dkq-bO7mRlAv2Qw88b01Xg8KILQxw-biphQqdXKs,47434
|
|
73
|
+
agent_starter_pack/cli/commands/enhance.py,sha256=dpITDtlMMbo_FIfebNo_i8YxmOIOWCBqRgJ5G4s3nTU,24669
|
|
74
74
|
agent_starter_pack/cli/commands/list.py,sha256=ZGol9eYB9Yon7JysMUCtpEOwdXzrApdTHzErx6KvT04,6856
|
|
75
75
|
agent_starter_pack/cli/commands/setup_cicd.py,sha256=UnhU8p9emfBV-7_6uKYdUfTQBnsbSIFQbJoMHMq8pik,32507
|
|
76
76
|
agent_starter_pack/cli/utils/__init__.py,sha256=_cTmsXGPqOtK0q8UW5164QTltbJRJFR_Efxq_BRL1-o,1311
|
|
@@ -79,7 +79,7 @@ agent_starter_pack/cli/utils/datastores.py,sha256=gv1V6eDcOEKx4MRNG5C3Y-VfixYq1A
|
|
|
79
79
|
agent_starter_pack/cli/utils/gcp.py,sha256=N6pvNU9gT6DpS7Peipfs57ckvqcUWU7OK1zdqBcQV0M,9276
|
|
80
80
|
agent_starter_pack/cli/utils/logging.py,sha256=61ulUY1hUrpxHDFi0szqsjPlrpxdBvwzfYEEV0o97GA,3530
|
|
81
81
|
agent_starter_pack/cli/utils/remote_template.py,sha256=CD5imiJPGIMVRhGOCiB11oFsz9Pusy_A2kdxsvMfscE,24129
|
|
82
|
-
agent_starter_pack/cli/utils/template.py,sha256=
|
|
82
|
+
agent_starter_pack/cli/utils/template.py,sha256=9U3eZOqISbCQ-uOmGwLCWagTDjaGPmIKqiei1XiID8w,52459
|
|
83
83
|
agent_starter_pack/cli/utils/version.py,sha256=F4udQmzniPStqWZFIgnv3Qg3l9non4mfy2An-Oveqmc,2916
|
|
84
84
|
agent_starter_pack/data_ingestion/README.md,sha256=LNxSQoJW9JozK-TbyGQLj5L_MGWNwrfLk6V6RmQ2oBQ,4032
|
|
85
85
|
agent_starter_pack/data_ingestion/pyproject.toml,sha256=-1Mf2QB8K70ICQV5UPZDpf-fN3UwEQLVzQyxfakCSTY,445
|
|
@@ -95,7 +95,7 @@ agent_starter_pack/deployment_targets/agent_engine/tests/integration/test_agent_
|
|
|
95
95
|
agent_starter_pack/deployment_targets/agent_engine/tests/load_test/README.md,sha256=mUuKQV-NZCe23Qbi08V3mGgLW2GN-IgCAGqlBw69n_8,2874
|
|
96
96
|
agent_starter_pack/deployment_targets/agent_engine/tests/load_test/load_test.py,sha256=sZewuwPQwgrfaYCo7IjIhIN9REFXP-rhJbtW236EuGA,9110
|
|
97
97
|
agent_starter_pack/deployment_targets/agent_engine/tests/load_test/.results/.placeholder,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
|
-
agent_starter_pack/deployment_targets/agent_engine/{{cookiecutter.agent_directory}}/agent_engine_app.py,sha256=
|
|
98
|
+
agent_starter_pack/deployment_targets/agent_engine/{{cookiecutter.agent_directory}}/agent_engine_app.py,sha256=qKEz1z2pD5IpFBq7IhT0GtFpPdbUu54gca10qZKe6Yw,13246
|
|
99
99
|
agent_starter_pack/deployment_targets/agent_engine/{{cookiecutter.agent_directory}}/utils/deployment.py,sha256=KwhRqgnTr6JsmVt6BG5zy8wH1sC_mlu5oEgh7L83ERk,3226
|
|
100
100
|
agent_starter_pack/deployment_targets/agent_engine/{{cookiecutter.agent_directory}}/utils/{% if cookiecutter.is_adk_live %}expose_app.py{% else %}unused_expose_app.py{% endif %},sha256=6o6CBsQblSL919-ag5WcshQBYc3mrIBuyhfxWI0Cmkg,19446
|
|
101
101
|
agent_starter_pack/deployment_targets/cloud_run/Dockerfile,sha256=GExFR0dSpkTzvzmeE3siGaoXCWp7zKJoB4Uguo0oZhk,1423
|
|
@@ -172,8 +172,8 @@ agent_starter_pack/utils/generate_locks.py,sha256=LwR46w25CV0_ySF_MS9W2vp7S1Nf17
|
|
|
172
172
|
agent_starter_pack/utils/lock_utils.py,sha256=vqFHTN7lju9to74MKOmLvz80BA47G0CVkxrd1MyLWYQ,2309
|
|
173
173
|
agent_starter_pack/utils/watch_and_rebuild.py,sha256=1hMn29eLpVblfvixV9FEo46u8efmnLuRIn-bPrfdW3g,6694
|
|
174
174
|
llm.txt,sha256=z9FTkAnj3cErCzHj3IES9eB35wW3JGaVsd8a0wA7IMs,15380
|
|
175
|
-
agent_starter_pack-0.17.
|
|
176
|
-
agent_starter_pack-0.17.
|
|
177
|
-
agent_starter_pack-0.17.
|
|
178
|
-
agent_starter_pack-0.17.
|
|
179
|
-
agent_starter_pack-0.17.
|
|
175
|
+
agent_starter_pack-0.17.4.dist-info/METADATA,sha256=mt4AxsXueS2RD43q0LrYqOe5daJUR63K3UNDITu50gU,11210
|
|
176
|
+
agent_starter_pack-0.17.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
177
|
+
agent_starter_pack-0.17.4.dist-info/entry_points.txt,sha256=QLSX_97UynG0vLpoZ3ePfyCQkaR-g0qglp2b26G4KHQ,71
|
|
178
|
+
agent_starter_pack-0.17.4.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
179
|
+
agent_starter_pack-0.17.4.dist-info/RECORD,,
|
|
File without changes
|
{agent_starter_pack-0.17.2.dist-info → agent_starter_pack-0.17.4.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{agent_starter_pack-0.17.2.dist-info → agent_starter_pack-0.17.4.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|