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.
Files changed (29) hide show
  1. {agent_starter_pack-0.12.0.dist-info → agent_starter_pack-0.13.0.dist-info}/METADATA +2 -1
  2. {agent_starter_pack-0.12.0.dist-info → agent_starter_pack-0.13.0.dist-info}/RECORD +27 -29
  3. src/base_template/Makefile +18 -6
  4. src/base_template/README.md +13 -48
  5. src/cli/commands/create.py +54 -53
  6. src/cli/commands/enhance.py +6 -2
  7. src/cli/commands/list.py +65 -26
  8. src/cli/utils/gcp.py +122 -1
  9. src/cli/utils/remote_template.py +175 -4
  10. src/cli/utils/template.py +72 -1
  11. src/deployment_targets/cloud_run/Dockerfile +16 -0
  12. src/deployment_targets/cloud_run/{{cookiecutter.agent_directory}}/server.py +49 -1
  13. src/frontends/live_api_react/frontend/package-lock.json +9 -9
  14. src/frontends/live_api_react/frontend/src/App.tsx +3 -2
  15. src/frontends/live_api_react/frontend/src/utils/multimodal-live-client.ts +3 -1
  16. src/resources/locks/uv-adk_base-agent_engine.lock +452 -452
  17. src/resources/locks/uv-adk_base-cloud_run.lock +571 -568
  18. src/resources/locks/uv-agentic_rag-agent_engine.lock +565 -566
  19. src/resources/locks/uv-agentic_rag-cloud_run.lock +716 -713
  20. src/resources/locks/uv-crewai_coding_crew-agent_engine.lock +729 -735
  21. src/resources/locks/uv-crewai_coding_crew-cloud_run.lock +923 -940
  22. src/resources/locks/uv-langgraph_base_react-agent_engine.lock +658 -664
  23. src/resources/locks/uv-langgraph_base_react-cloud_run.lock +852 -869
  24. src/resources/locks/uv-live_api-cloud_run.lock +758 -775
  25. src/resources/locks/uv-adk_gemini_fullstack-agent_engine.lock +0 -3938
  26. src/resources/locks/uv-adk_gemini_fullstack-cloud_run.lock +0 -4501
  27. {agent_starter_pack-0.12.0.dist-info → agent_starter_pack-0.13.0.dist-info}/WHEEL +0 -0
  28. {agent_starter_pack-0.12.0.dist-info → agent_starter_pack-0.13.0.dist-info}/entry_points.txt +0 -0
  29. {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
- url = url || `ws://localhost:8000/ws`;
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