You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Change DEFAULT_FRONTEND from "streamlit" to "None"
- Fix copy_frontend_files to properly handle "None" value
- Prevent infinite recursion when default is "None"
- Update documentation to reflect new default behavior
This ensures agents with frontend_type: "None" (like adk_base) don't
inadvertently get streamlit frontend files during templating.
|`deployment_targets`| list(string) | A list of deployment targets your template supports. Options: `agent_engine`, `cloud_run`. |
29
29
|`tags`| list(string) | A list of tags for categorization. The `adk` tag enables special integrations with the Agent Development Kit. |
30
-
|`frontend_type`| string | Specifies the frontend to use. Examples: `streamlit`, `adk_live_react`. Defaults to `streamlit`. |
30
+
|`frontend_type`| string | Specifies the frontend to use. Examples: `streamlit`, `adk_live_react`. Defaults to `None` (no frontend).|
31
31
|`agent_directory`| string | The name of the directory where agent code will be placed. Defaults to `app`. Can be overridden by the CLI `--agent-directory` parameter. |
32
32
|`requires_data_ingestion`| boolean | If `true`, the user will be prompted to configure a datastore. |
33
33
|`requires_session`| boolean | If `true`, the user will be prompted to choose a session storage type (e.g., `alloydb`) when using the `cloud_run` target. |
0 commit comments