agent-starter-pack 0.12.0__py3-none-any.whl → 0.13.0__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.
- {agent_starter_pack-0.12.0.dist-info → agent_starter_pack-0.13.0.dist-info}/METADATA +2 -1
- {agent_starter_pack-0.12.0.dist-info → agent_starter_pack-0.13.0.dist-info}/RECORD +27 -29
- src/base_template/Makefile +18 -6
- src/base_template/README.md +13 -48
- src/cli/commands/create.py +54 -53
- src/cli/commands/enhance.py +6 -2
- src/cli/commands/list.py +65 -26
- src/cli/utils/gcp.py +122 -1
- src/cli/utils/remote_template.py +175 -4
- src/cli/utils/template.py +72 -1
- src/deployment_targets/cloud_run/Dockerfile +16 -0
- src/deployment_targets/cloud_run/{{cookiecutter.agent_directory}}/server.py +49 -1
- src/frontends/live_api_react/frontend/package-lock.json +9 -9
- src/frontends/live_api_react/frontend/src/App.tsx +3 -2
- src/frontends/live_api_react/frontend/src/utils/multimodal-live-client.ts +3 -1
- src/resources/locks/uv-adk_base-agent_engine.lock +452 -452
- src/resources/locks/uv-adk_base-cloud_run.lock +571 -568
- src/resources/locks/uv-agentic_rag-agent_engine.lock +565 -566
- src/resources/locks/uv-agentic_rag-cloud_run.lock +716 -713
- src/resources/locks/uv-crewai_coding_crew-agent_engine.lock +729 -735
- src/resources/locks/uv-crewai_coding_crew-cloud_run.lock +923 -940
- src/resources/locks/uv-langgraph_base_react-agent_engine.lock +658 -664
- src/resources/locks/uv-langgraph_base_react-cloud_run.lock +852 -869
- src/resources/locks/uv-live_api-cloud_run.lock +758 -775
- src/resources/locks/uv-adk_gemini_fullstack-agent_engine.lock +0 -3938
- src/resources/locks/uv-adk_gemini_fullstack-cloud_run.lock +0 -4501
- {agent_starter_pack-0.12.0.dist-info → agent_starter_pack-0.13.0.dist-info}/WHEEL +0 -0
- {agent_starter_pack-0.12.0.dist-info → agent_starter_pack-0.13.0.dist-info}/entry_points.txt +0 -0
- {agent_starter_pack-0.12.0.dist-info → agent_starter_pack-0.13.0.dist-info}/licenses/LICENSE +0 -0
@@ -74,7 +74,9 @@ export class MultimodalLiveClient extends EventEmitter<MultimodalLiveClientEvent
|
|
74
74
|
private userId?: string;
|
75
75
|
constructor({ url, userId, runId }: MultimodalLiveAPIClientConnection) {
|
76
76
|
super();
|
77
|
-
|
77
|
+
// Use relative URL that works with integrated setup and deployments
|
78
|
+
const defaultWsUrl = `${window.location.protocol === 'https:' ? 'wss:' : 'ws:'}//${window.location.host}/ws`;
|
79
|
+
url = url || defaultWsUrl;
|
78
80
|
this.url = new URL("ws", url).href;
|
79
81
|
this.userId = userId;
|
80
82
|
this.runId = runId || crypto.randomUUID(); // Ensure runId is always a string by providing default
|