-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Expand file tree
/
Copy pathcli_deploy.py
More file actions
1439 lines (1324 loc) · 52.3 KB
/
cli_deploy.py
File metadata and controls
1439 lines (1324 loc) · 52.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import annotations
from datetime import datetime
import importlib
import json
import os
import shutil
import subprocess
import sys
import traceback
from typing import Final
from typing import Literal
from typing import Optional
import warnings
import click
from packaging.version import parse
_IS_WINDOWS = os.name == 'nt'
_GCLOUD_CMD = 'gcloud.cmd' if _IS_WINDOWS else 'gcloud'
_LOCAL_STORAGE_FLAG_MIN_VERSION: Final[str] = '1.21.0'
_AGENT_ENGINE_REQUIREMENT: Final[str] = (
'google-cloud-aiplatform[adk,agent_engines]'
)
def _ensure_agent_engine_dependency(requirements_txt_path: str) -> None:
"""Ensures staged requirements include Agent Engine dependencies."""
if not os.path.exists(requirements_txt_path):
raise FileNotFoundError(
f'requirements.txt not found at: {requirements_txt_path}'
)
requirements = ''
with open(requirements_txt_path, 'r', encoding='utf-8') as f:
requirements = f.read()
for line in requirements.splitlines():
stripped = line.strip()
if (
stripped
and not stripped.startswith('#')
and stripped.startswith('google-cloud-aiplatform')
):
return
with open(requirements_txt_path, 'a', encoding='utf-8') as f:
if requirements and not requirements.endswith('\n'):
f.write('\n')
f.write(_AGENT_ENGINE_REQUIREMENT + '\n')
_DOCKERFILE_TEMPLATE: Final[str] = """
FROM python:3.11-slim
WORKDIR /app
# Create a non-root user
RUN adduser --disabled-password --gecos "" myuser
# Switch to the non-root user
USER myuser
# Set up environment variables - Start
ENV PATH="/home/myuser/.local/bin:$PATH"
ENV GOOGLE_GENAI_USE_VERTEXAI=1
ENV GOOGLE_CLOUD_PROJECT={gcp_project_id}
ENV GOOGLE_CLOUD_LOCATION={gcp_region}
# Set up environment variables - End
# Install ADK - Start
RUN pip install google-adk=={adk_version}
# Install ADK - End
# Copy agent - Start
# Set permission
COPY --chown=myuser:myuser "agents/{app_name}/" "/app/agents/{app_name}/"
# Copy agent - End
# Install Agent Deps - Start
{install_agent_deps}
# Install Agent Deps - End
EXPOSE {port}
CMD adk {command} --port={port} {host_option} {service_option} {trace_to_cloud_option} {otel_to_cloud_option} {allow_origins_option} {a2a_option} {trigger_sources_option} "/app/agents"
"""
_AGENT_ENGINE_APP_TEMPLATE: Final[str] = """
import os
import vertexai
from vertexai.agent_engines import AdkApp
if {is_config_agent}:
from google.adk.agents import config_agent_utils
config_path = os.path.join(os.path.dirname(__file__), "root_agent.yaml")
root_agent = config_agent_utils.from_config(config_path)
else:
from .agent import {adk_app_object}
if {express_mode}: # Whether or not to use Express Mode
vertexai.init(api_key=os.environ.get("GOOGLE_API_KEY"))
else:
vertexai.init(
project=os.environ.get("GOOGLE_CLOUD_PROJECT"),
location=os.environ.get("GOOGLE_CLOUD_LOCATION"),
)
adk_app = AdkApp(
{adk_app_type}={adk_app_object},
enable_tracing={trace_to_cloud_option},
)
"""
_AGENT_ENGINE_CLASS_METHODS = [
{
'name': 'get_session',
'description': (
'Deprecated. Use async_get_session instead.\n\n Get a'
' session for the given user.\n '
),
'parameters': {
'properties': {
'user_id': {'type': 'string'},
'session_id': {'type': 'string'},
},
'required': ['user_id', 'session_id'],
'type': 'object',
},
'api_mode': '',
},
{
'name': 'list_sessions',
'description': (
'Deprecated. Use async_list_sessions instead.\n\n List'
' sessions for the given user.\n '
),
'parameters': {
'properties': {'user_id': {'type': 'string'}},
'required': ['user_id'],
'type': 'object',
},
'api_mode': '',
},
{
'name': 'create_session',
'description': (
'Deprecated. Use async_create_session instead.\n\n Creates a'
' new session.\n '
),
'parameters': {
'properties': {
'user_id': {'type': 'string'},
'session_id': {'type': 'string', 'nullable': True},
'state': {'type': 'object', 'nullable': True},
},
'required': ['user_id'],
'type': 'object',
},
'api_mode': '',
},
{
'name': 'delete_session',
'description': (
'Deprecated. Use async_delete_session instead.\n\n Deletes a'
' session for the given user.\n '
),
'parameters': {
'properties': {
'user_id': {'type': 'string'},
'session_id': {'type': 'string'},
},
'required': ['user_id', 'session_id'],
'type': 'object',
},
'api_mode': '',
},
{
'name': 'async_get_session',
'description': (
'Get a session for the given user.\n\n Args:\n '
' user_id (str):\n Required. The ID of the user.\n '
' session_id (str):\n Required. The ID of'
' the session.\n **kwargs (dict[str, Any]):\n '
' Optional. Additional keyword arguments to pass to the\n '
' session service.\n\n Returns:\n '
' Session: The session instance (if any). It returns None if the\n '
' session is not found.\n\n Raises:\n '
' RuntimeError: If the session is not found.\n '
),
'parameters': {
'properties': {
'user_id': {'type': 'string'},
'session_id': {'type': 'string'},
},
'required': ['user_id', 'session_id'],
'type': 'object',
},
'api_mode': 'async',
},
{
'name': 'async_list_sessions',
'description': (
'List sessions for the given user.\n\n Args:\n '
' user_id (str):\n Required. The ID of the user.\n '
' **kwargs (dict[str, Any]):\n Optional.'
' Additional keyword arguments to pass to the\n '
' session service.\n\n Returns:\n '
' ListSessionsResponse: The list of sessions.\n '
),
'parameters': {
'properties': {'user_id': {'type': 'string'}},
'required': ['user_id'],
'type': 'object',
},
'api_mode': 'async',
},
{
'name': 'async_create_session',
'description': (
'Creates a new session.\n\n Args:\n user_id'
' (str):\n Required. The ID of the user.\n '
' session_id (str):\n Optional. The ID of the'
' session. If not provided, an ID\n will be be'
' generated for the session.\n state (dict[str, Any]):\n'
' Optional. The initial state of the session.\n '
' **kwargs (dict[str, Any]):\n Optional.'
' Additional keyword arguments to pass to the\n '
' session service.\n\n Returns:\n Session: The'
' newly created session instance.\n '
),
'parameters': {
'properties': {
'user_id': {'type': 'string'},
'session_id': {'type': 'string', 'nullable': True},
'state': {'type': 'object', 'nullable': True},
},
'required': ['user_id'],
'type': 'object',
},
'api_mode': 'async',
},
{
'name': 'async_delete_session',
'description': (
'Deletes a session for the given user.\n\n Args:\n '
' user_id (str):\n Required. The ID of the user.\n '
' session_id (str):\n Required. The ID of'
' the session.\n **kwargs (dict[str, Any]):\n '
' Optional. Additional keyword arguments to pass to the\n '
' session service.\n '
),
'parameters': {
'properties': {
'user_id': {'type': 'string'},
'session_id': {'type': 'string'},
},
'required': ['user_id', 'session_id'],
'type': 'object',
},
'api_mode': 'async',
},
{
'name': 'async_add_session_to_memory',
'description': (
'Generates memories.\n\n Args:\n session'
' (Dict[str, Any]):\n Required. The session to use'
' for generating memories. It should\n be a'
' dictionary representing an ADK Session object, e.g.\n '
' session.model_dump(mode="json").\n '
),
'parameters': {
'properties': {
'session': {'additionalProperties': True, 'type': 'object'}
},
'required': ['session'],
'type': 'object',
},
'api_mode': 'async',
},
{
'name': 'async_search_memory',
'description': (
'Searches memories for the given user.\n\n Args:\n '
' user_id: The id of the user.\n query: The query to'
' match the memories on.\n\n Returns:\n A'
' SearchMemoryResponse containing the matching memories.\n '
),
'parameters': {
'properties': {
'user_id': {'type': 'string'},
'query': {'type': 'string'},
},
'required': ['user_id', 'query'],
'type': 'object',
},
'api_mode': 'async',
},
{
'name': 'stream_query',
'description': (
'Deprecated. Use async_stream_query instead.\n\n Streams'
' responses from the ADK application in response to a message.\n\n '
' Args:\n message (Union[str, Dict[str, Any]]):\n '
' Required. The message to stream responses for.\n '
' user_id (str):\n Required. The ID of the'
' user.\n session_id (str):\n Optional.'
' The ID of the session. If not provided, a new\n '
' session will be created for the user.\n run_config'
' (Optional[Dict[str, Any]]):\n Optional. The run'
' config to use for the query. If you want to\n pass'
' in a `run_config` pydantic object, you can pass in a dict\n '
' representing it as'
' `run_config.model_dump(mode="json")`.\n **kwargs'
' (dict[str, Any]):\n Optional. Additional keyword'
' arguments to pass to the\n runner.\n\n '
' Yields:\n The output of querying the ADK'
' application.\n '
),
'parameters': {
'properties': {
'message': {
'anyOf': [
{'type': 'string'},
{'additionalProperties': True, 'type': 'object'},
]
},
'user_id': {'type': 'string'},
'session_id': {'type': 'string', 'nullable': True},
'run_config': {'type': 'object', 'nullable': True},
},
'required': ['message', 'user_id'],
'type': 'object',
},
'api_mode': 'stream',
},
{
'name': 'async_stream_query',
'description': (
'Streams responses asynchronously from the ADK application.\n\n '
' Args:\n message (str):\n Required.'
' The message to stream responses for.\n user_id'
' (str):\n Required. The ID of the user.\n '
' session_id (str):\n Optional. The ID of the'
' session. If not provided, a new\n session will be'
' created for the user.\n run_config (Optional[Dict[str,'
' Any]]):\n Optional. The run config to use for the'
' query. If you want to\n pass in a `run_config`'
' pydantic object, you can pass in a dict\n '
' representing it as `run_config.model_dump(mode="json")`.\n '
' **kwargs (dict[str, Any]):\n Optional.'
' Additional keyword arguments to pass to the\n '
' runner.\n\n Yields:\n Event dictionaries'
' asynchronously.\n '
),
'parameters': {
'properties': {
'message': {
'anyOf': [
{'type': 'string'},
{'additionalProperties': True, 'type': 'object'},
]
},
'user_id': {'type': 'string'},
'session_id': {'type': 'string', 'nullable': True},
'run_config': {'type': 'object', 'nullable': True},
},
'required': ['message', 'user_id'],
'type': 'object',
},
'api_mode': 'async_stream',
},
{
'name': 'streaming_agent_run_with_events',
'description': (
'Streams responses asynchronously from the ADK application.\n\n '
' In general, you should use `async_stream_query` instead, as it'
' has a\n more structured API and works with the respective'
' ADK services that\n you have defined for the AdkApp. This'
' method is primarily meant for\n invocation from'
' AgentSpace.\n\n Args:\n request_json (str):\n '
' Required. The request to stream responses for.\n '
' '
),
'parameters': {
'properties': {'request_json': {'type': 'string'}},
'required': ['request_json'],
'type': 'object',
},
'api_mode': 'async_stream',
},
]
def _resolve_project(project_in_option: Optional[str]) -> str:
if project_in_option:
return project_in_option
result = subprocess.run(
[_GCLOUD_CMD, 'config', 'get-value', 'project'],
check=True,
capture_output=True,
text=True,
)
project = result.stdout.strip()
click.echo(f'Use default project: {project}')
return project
def _validate_gcloud_extra_args(
extra_gcloud_args: Optional[tuple[str, ...]], adk_managed_args: set[str]
) -> None:
"""Validates that extra gcloud args don't conflict with ADK-managed args.
This function dynamically checks for conflicts based on the actual args
that ADK will set, rather than using a hardcoded list.
Args:
extra_gcloud_args: User-provided extra arguments for gcloud.
adk_managed_args: Set of argument names that ADK will set automatically.
Should include '--' prefix (e.g., '--project').
Raises:
click.ClickException: If any conflicts are found.
"""
if not extra_gcloud_args:
return
# Parse user arguments into a set of argument names for faster lookup
user_arg_names = set()
for arg in extra_gcloud_args:
if arg.startswith('--'):
# Handle both '--arg=value' and '--arg value' formats
arg_name = arg.split('=')[0]
user_arg_names.add(arg_name)
# Check for conflicts with ADK-managed args
conflicts = user_arg_names.intersection(adk_managed_args)
if conflicts:
conflict_list = ', '.join(f"'{arg}'" for arg in sorted(conflicts))
if len(conflicts) == 1:
raise click.ClickException(
f"The argument {conflict_list} conflicts with ADK's automatic"
' configuration. ADK will set this argument automatically, so please'
' remove it from your command.'
)
else:
raise click.ClickException(
f"The arguments {conflict_list} conflict with ADK's automatic"
' configuration. ADK will set these arguments automatically, so'
' please remove them from your command.'
)
def _validate_agent_import(
agent_src_path: str,
adk_app_object: str,
is_config_agent: bool,
) -> None:
"""Validates that the agent module can be imported successfully.
This pre-deployment validation catches common issues like missing
dependencies or import errors in custom BaseLlm implementations before
the agent is deployed to Agent Engine. This provides clearer error
messages and prevents deployments that would fail at runtime.
Args:
agent_src_path: Path to the staged agent source code.
adk_app_object: The Python object name to import ('root_agent' or 'app').
is_config_agent: Whether this is a config-based agent.
Raises:
click.ClickException: If the agent module cannot be imported.
"""
if is_config_agent:
# Config agents are loaded from YAML, skip Python import validation
return
agent_module_path = os.path.join(agent_src_path, 'agent.py')
if not os.path.exists(agent_module_path):
raise click.ClickException(
f'Agent module not found at {agent_module_path}. '
'Please ensure your agent folder contains an agent.py file.'
)
# Add the parent directory to sys.path temporarily for import resolution
parent_dir = os.path.dirname(agent_src_path)
module_name = os.path.basename(agent_src_path)
original_sys_path = sys.path.copy()
original_sys_modules_keys = set(sys.modules.keys())
try:
# Add parent directory to path so imports work correctly
if parent_dir not in sys.path:
sys.path.insert(0, parent_dir)
try:
module = importlib.import_module(f'{module_name}.agent')
except ImportError as e:
error_msg = str(e)
tb = traceback.format_exc()
# Check for common issues
if 'BaseLlm' in tb or 'base_llm' in tb.lower():
raise click.ClickException(
'Failed to import agent module due to a BaseLlm-related error:\n'
f'{error_msg}\n\n'
'This error often occurs when deploying agents with custom LLM '
'implementations. Please ensure:\n'
'1. All custom LLM classes are defined in files within your agent '
'folder\n'
'2. All required dependencies are listed in requirements.txt\n'
'3. Import paths use relative imports (e.g., "from .my_llm import '
'MyLlm")\n'
'4. Your custom BaseLlm class and its dependencies are installed\n'
'\n'
'If this failure is expected (e.g., missing local dependencies), '
'disable agent import validation by omitting '
'--validate-agent-import (default) or passing '
'--skip-agent-import-validation (or --no-validate-agent-import).'
) from e
else:
raise click.ClickException(
f'Failed to import agent module:\n{error_msg}\n\n'
'Please ensure all dependencies are listed in requirements.txt '
'and all imports are resolvable.\n\n'
f'Full traceback:\n{tb}\n\n'
'If this failure is expected (e.g., missing local dependencies), '
'disable agent import validation by omitting '
'--validate-agent-import (default) or passing '
'--skip-agent-import-validation (or --no-validate-agent-import).'
) from e
except Exception as e:
tb = traceback.format_exc()
raise click.ClickException(
f'Error while loading agent module:\n{e}\n\n'
'Please check your agent code for errors.\n\n'
f'Full traceback:\n{tb}\n\n'
'If this failure is expected (e.g., missing local dependencies), '
'disable agent import validation by omitting '
'--validate-agent-import (default) or passing '
'--skip-agent-import-validation (or --no-validate-agent-import).'
) from e
# Check that the expected object exists
if not hasattr(module, adk_app_object):
available_attrs = [
attr for attr in dir(module) if not attr.startswith('_')
]
raise click.ClickException(
f"Agent module does not export '{adk_app_object}'. "
f'Available exports: {available_attrs}\n\n'
'Please ensure your agent.py exports either "root_agent" or "app".'
)
click.echo(
'Agent module validation successful: '
f'found "{adk_app_object}" in agent.py'
)
finally:
# Restore original sys.path
sys.path[:] = original_sys_path
# Clean up modules introduced by validation.
for key in list(sys.modules.keys()):
if key in original_sys_modules_keys:
continue
if key == module_name or key.startswith(f'{module_name}.'):
sys.modules.pop(key, None)
def _get_service_option_by_adk_version(
adk_version: str,
session_uri: Optional[str],
artifact_uri: Optional[str],
memory_uri: Optional[str],
use_local_storage: Optional[bool] = None,
) -> str:
"""Returns service option string based on adk_version."""
parsed_version = parse(adk_version)
options: list[str] = []
if parsed_version >= parse('1.3.0'):
if session_uri:
options.append(f'--session_service_uri={session_uri}')
if artifact_uri:
options.append(f'--artifact_service_uri={artifact_uri}')
if memory_uri:
options.append(f'--memory_service_uri={memory_uri}')
else:
if session_uri:
options.append(f'--session_db_url={session_uri}')
if parsed_version >= parse('1.2.0') and artifact_uri:
options.append(f'--artifact_storage_uri={artifact_uri}')
if use_local_storage is not None and parsed_version >= parse(
_LOCAL_STORAGE_FLAG_MIN_VERSION
):
# Only valid when session/artifact URIs are unset; otherwise the CLI
# rejects the combination to avoid confusing precedence.
if session_uri is None and artifact_uri is None:
options.append((
'--use_local_storage'
if use_local_storage
else '--no_use_local_storage'
))
return ' '.join(options)
def to_cloud_run(
*,
agent_folder: str,
project: Optional[str],
region: Optional[str],
service_name: str,
app_name: str,
temp_folder: str,
port: int,
trace_to_cloud: bool,
otel_to_cloud: bool,
with_ui: bool,
log_level: str,
verbosity: str,
adk_version: str,
allow_origins: Optional[list[str]] = None,
session_service_uri: Optional[str] = None,
artifact_service_uri: Optional[str] = None,
memory_service_uri: Optional[str] = None,
use_local_storage: bool = False,
a2a: bool = False,
trigger_sources: Optional[str] = None,
extra_gcloud_args: Optional[tuple[str, ...]] = None,
):
"""Deploys an agent to Google Cloud Run.
`agent_folder` should contain the following files:
- __init__.py
- agent.py
- requirements.txt (optional, for additional dependencies)
- ... (other required source files)
The folder structure of temp_folder will be
* dist/[google_adk wheel file]
* agents/[app_name]/
* agent source code from `agent_folder`
Args:
agent_folder: The folder (absolute path) containing the agent source code.
project: Google Cloud project id.
region: Google Cloud region.
service_name: The service name in Cloud Run.
app_name: The name of the app, by default, it's basename of `agent_folder`.
temp_folder: The temp folder for the generated Cloud Run source files.
port: The port of the ADK api server.
trace_to_cloud: Whether to enable Cloud Trace.
otel_to_cloud: Whether to enable exporting OpenTelemetry signals
to Google Cloud.
with_ui: Whether to deploy with UI.
verbosity: The verbosity level of the CLI.
adk_version: The ADK version to use in Cloud Run.
allow_origins: Origins to allow for CORS. Can be literal origins or regex
patterns prefixed with 'regex:'.
session_service_uri: The URI of the session service.
artifact_service_uri: The URI of the artifact service.
memory_service_uri: The URI of the memory service.
use_local_storage: Whether to use local .adk storage in the container.
"""
app_name = app_name or os.path.basename(agent_folder)
if parse(adk_version) >= parse('1.3.0') and not use_local_storage:
session_service_uri = session_service_uri or 'memory://'
artifact_service_uri = artifact_service_uri or 'memory://'
click.echo(f'Start generating Cloud Run source files in {temp_folder}')
# remove temp_folder if exists
if os.path.exists(temp_folder):
click.echo('Removing existing files')
shutil.rmtree(temp_folder)
try:
# copy agent source code
click.echo('Copying agent source code...')
agent_src_path = os.path.join(temp_folder, 'agents', app_name)
shutil.copytree(agent_folder, agent_src_path)
requirements_txt_path = os.path.join(agent_src_path, 'requirements.txt')
install_agent_deps = (
f'RUN pip install -r "/app/agents/{app_name}/requirements.txt"'
if os.path.exists(requirements_txt_path)
else '# No requirements.txt found.'
)
click.echo('Copying agent source code completed.')
# create Dockerfile
click.echo('Creating Dockerfile...')
host_option = '--host=0.0.0.0' if adk_version > '0.5.0' else ''
allow_origins_option = (
f'--allow_origins={",".join(allow_origins)}' if allow_origins else ''
)
a2a_option = '--a2a' if a2a else ''
trigger_sources_option = (
f'--trigger_sources={trigger_sources}' if trigger_sources else ''
)
dockerfile_content = _DOCKERFILE_TEMPLATE.format(
gcp_project_id=project,
gcp_region=region,
app_name=app_name,
port=port,
command='web' if with_ui else 'api_server',
install_agent_deps=install_agent_deps,
service_option=_get_service_option_by_adk_version(
adk_version,
session_service_uri,
artifact_service_uri,
memory_service_uri,
use_local_storage,
),
trace_to_cloud_option='--trace_to_cloud' if trace_to_cloud else '',
otel_to_cloud_option='--otel_to_cloud' if otel_to_cloud else '',
allow_origins_option=allow_origins_option,
adk_version=adk_version,
host_option=host_option,
a2a_option=a2a_option,
trigger_sources_option=trigger_sources_option,
)
dockerfile_path = os.path.join(temp_folder, 'Dockerfile')
os.makedirs(temp_folder, exist_ok=True)
with open(dockerfile_path, 'w', encoding='utf-8') as f:
f.write(
dockerfile_content,
)
click.echo(f'Creating Dockerfile complete: {dockerfile_path}')
# Deploy to Cloud Run
click.echo('Deploying to Cloud Run...')
region_options = ['--region', region] if region else []
project = _resolve_project(project)
# Build the set of args that ADK will manage
adk_managed_args = {'--source', '--project', '--port', '--verbosity'}
if region:
adk_managed_args.add('--region')
# Validate that extra gcloud args don't conflict with ADK-managed args
_validate_gcloud_extra_args(extra_gcloud_args, adk_managed_args)
# Build the command with extra gcloud args
gcloud_cmd = [
_GCLOUD_CMD,
'run',
'deploy',
service_name,
'--source',
temp_folder,
'--project',
project,
*region_options,
'--port',
str(port),
'--verbosity',
log_level.lower() if log_level else verbosity,
]
# Handle labels specially - merge user labels with ADK label
user_labels = []
extra_args_without_labels = []
if extra_gcloud_args:
for arg in extra_gcloud_args:
if arg.startswith('--labels='):
# Extract user-provided labels
user_labels_value = arg[9:] # Remove '--labels=' prefix
user_labels.append(user_labels_value)
else:
extra_args_without_labels.append(arg)
# Combine ADK label with user labels
all_labels = ['created-by=adk']
all_labels.extend(user_labels)
labels_arg = ','.join(all_labels)
gcloud_cmd.extend(['--labels', labels_arg])
# Add any remaining extra passthrough args
gcloud_cmd.extend(extra_args_without_labels)
subprocess.run(gcloud_cmd, check=True)
finally:
click.echo(f'Cleaning up the temp folder: {temp_folder}')
shutil.rmtree(temp_folder)
def _print_agent_engine_url(resource_name: str) -> None:
"""Prints the Google Cloud Console URL for the deployed agent."""
parts = resource_name.split('/')
if len(parts) >= 6 and parts[0] == 'projects' and parts[2] == 'locations':
project_id = parts[1]
region = parts[3]
engine_id = parts[5]
url = (
'https://console.cloud.google.com/agent-platform/runtimes'
f'/locations/{region}/agent-engines/{engine_id}/playground'
f'?project={project_id}'
)
click.secho(
f'\n🎉 View your deployed agent here:\n{url}\n', fg='cyan', bold=True
)
def to_agent_engine(
*,
agent_folder: str,
temp_folder: Optional[str] = None,
adk_app: str,
staging_bucket: Optional[str] = None,
trace_to_cloud: Optional[bool] = None,
otel_to_cloud: Optional[bool] = None,
api_key: Optional[str] = None,
adk_app_object: Optional[str] = None,
agent_engine_id: Optional[str] = None,
absolutize_imports: bool = True,
project: Optional[str] = None,
region: Optional[str] = None,
display_name: Optional[str] = None,
description: Optional[str] = None,
requirements_file: Optional[str] = None,
env_file: Optional[str] = None,
agent_engine_config_file: Optional[str] = None,
skip_agent_import_validation: bool = True,
):
"""Deploys an agent to Vertex AI Agent Engine.
`agent_folder` should contain the following files:
- __init__.py
- agent.py
- <adk_app>.py (optional, for customization; will be autogenerated otherwise)
- requirements.txt (optional, for additional dependencies)
- .env (optional, for environment variables)
- ... (other required source files)
The contents of `adk_app` should look something like:
```
from agent import <adk_app_object>
from vertexai.agent_engines import AdkApp
adk_app = AdkApp(
agent=<adk_app_object>, # or `app=<adk_app_object>`
)
```
Args:
agent_folder (str): The folder (absolute path) containing the agent source
code.
temp_folder (str): The temp folder for the generated Agent Engine source
files. It will be replaced with the generated files if it already exists.
adk_app (str): The name of the file (without .py) containing the AdkApp
instance.
staging_bucket (str): Deprecated. This argument is no longer required or
used.
trace_to_cloud (bool): Whether to enable Cloud Trace.
otel_to_cloud (bool): Whether to enable exporting OpenTelemetry signals
to Google Cloud.
api_key (str): Optional. The API key to use for Express Mode.
If not provided, the API key from the GOOGLE_API_KEY environment variable
will be used. It will only be used if GOOGLE_GENAI_USE_VERTEXAI is true.
adk_app_object (str): Optional. The Python object corresponding to the root
ADK agent or app. Defaults to `root_agent` if not specified.
agent_engine_id (str): Optional. The ID of the Agent Engine instance to
update. If not specified, a new Agent Engine instance will be created.
absolutize_imports (bool): Optional. Default is True. Whether to absolutize
imports. If True, all relative imports will be converted to absolute
import statements.
project (str): Optional. Google Cloud project id for the deployed agent. If
not specified, the project from the `GOOGLE_CLOUD_PROJECT` environment
variable will be used. It will be ignored if `api_key` is specified.
region (str): Optional. Google Cloud region for the deployed agent. If not
specified, the region from the `GOOGLE_CLOUD_LOCATION` environment
variable will be used. It will be ignored if `api_key` is specified.
display_name (str): Optional. The display name of the Agent Engine.
description (str): Optional. The description of the Agent Engine.
requirements_file (str): Optional. The filepath to the `requirements.txt`
file to use. If not specified, the `requirements.txt` file in the
`agent_folder` will be used.
env_file (str): Optional. The filepath to the `.env` file for environment
variables. If not specified, the `.env` file in the `agent_folder` will be
used. The values of `GOOGLE_CLOUD_PROJECT` and `GOOGLE_CLOUD_LOCATION`
will be overridden by `project` and `region` if they are specified.
agent_engine_config_file (str): The filepath to the agent engine config file
to use. If not specified, the `.agent_engine_config.json` file in the
`agent_folder` will be used.
skip_agent_import_validation (bool): Optional. Default is True. If True,
skip the pre-deployment import validation of `agent.py`. This can be
useful when the local environment does not have the same dependencies as
the deployment environment.
"""
app_name = os.path.basename(agent_folder)
display_name = display_name or app_name
parent_folder = os.path.dirname(agent_folder)
adk_app_object = adk_app_object or 'root_agent'
if adk_app_object not in ['root_agent', 'app']:
click.echo(
f'Invalid adk_app_object: {adk_app_object}. Please use "root_agent"'
' or "app".'
)
return
if staging_bucket:
warnings.warn(
'WARNING: `staging_bucket` is deprecated and will be removed in a'
' future release. Please drop it from the list of arguments.',
DeprecationWarning,
stacklevel=2,
)
original_cwd = os.getcwd()
did_change_cwd = False
if parent_folder != original_cwd:
click.echo(
'Agent Engine deployment uses relative paths; temporarily switching '
f'working directory to: {parent_folder}'
)
os.chdir(parent_folder)
did_change_cwd = True
tmp_app_name = app_name + '_tmp' + datetime.now().strftime('%Y%m%d_%H%M%S')
temp_folder = temp_folder or tmp_app_name
agent_src_path = os.path.join(parent_folder, temp_folder)
click.echo(f'Staging all files in: {agent_src_path}')
# remove agent_src_path if it exists
if os.path.exists(agent_src_path):
click.echo('Removing existing files')
shutil.rmtree(agent_src_path)
try:
click.echo(f'Staging all files in: {agent_src_path}')
ignore_patterns = None
ae_ignore_path = os.path.join(agent_folder, '.ae_ignore')
if os.path.exists(ae_ignore_path):
click.echo(f'Ignoring files matching the patterns in {ae_ignore_path}')
with open(ae_ignore_path, 'r') as f:
patterns = [pattern.strip() for pattern in f.readlines()]
ignore_patterns = shutil.ignore_patterns(*patterns)
click.echo('Copying agent source code...')
shutil.copytree(
agent_folder,
agent_src_path,
ignore=ignore_patterns,
dirs_exist_ok=True,
)
click.echo('Copying agent source code complete.')
project = _resolve_project(project)
click.echo('Resolving files and dependencies...')
agent_config = {}
if agent_engine_config_file and not os.path.exists(
agent_engine_config_file
):
raise click.ClickException(
'Agent engine config file not found: '
f'{parent_folder}/{agent_engine_config_file}'
)
if not agent_engine_config_file:
# Attempt to read the agent engine config from .agent_engine_config.json in the dir (if any).
agent_engine_config_file = os.path.join(
agent_folder, '.agent_engine_config.json'
)
if os.path.exists(agent_engine_config_file):
click.echo(f'Reading agent engine config from {agent_engine_config_file}')
with open(agent_engine_config_file, 'r') as f:
agent_config = json.load(f)
if display_name:
if 'display_name' in agent_config:
click.echo(
'Overriding display_name in agent engine config with'
f' {display_name}'
)
agent_config['display_name'] = display_name
if description:
if 'description' in agent_config:
click.echo(