agent-starter-pack 0.11.2__py3-none-any.whl → 0.12.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 (68) hide show
  1. {agent_starter_pack-0.11.2.dist-info → agent_starter_pack-0.12.0.dist-info}/METADATA +1 -1
  2. {agent_starter_pack-0.11.2.dist-info → agent_starter_pack-0.12.0.dist-info}/RECORD +41 -66
  3. agents/adk_base/app/__init__.py +17 -0
  4. agents/adk_base/notebooks/adk_app_testing.ipynb +4 -1
  5. agents/adk_base/tests/integration/test_agent.py +1 -1
  6. agents/agentic_rag/app/__init__.py +17 -0
  7. agents/agentic_rag/app/agent.py +2 -2
  8. agents/agentic_rag/notebooks/adk_app_testing.ipynb +4 -1
  9. agents/agentic_rag/tests/integration/test_agent.py +2 -2
  10. agents/crewai_coding_crew/tests/integration/test_agent.py +1 -1
  11. agents/langgraph_base_react/tests/integration/test_agent.py +1 -1
  12. agents/live_api/tests/unit/test_server.py +6 -6
  13. llm.txt +15 -4
  14. src/base_template/Makefile +5 -5
  15. src/base_template/README.md +4 -4
  16. src/base_template/deployment/terraform/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}build_triggers.tf{% else %}unused_build_triggers.tf{% endif %} +2 -2
  17. src/base_template/pyproject.toml +2 -2
  18. src/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/deploy-to-prod.yaml +1 -1
  19. src/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/pr_checks.yaml +1 -1
  20. src/base_template/{% if cookiecutter.cicd_runner == 'github_actions' %}.github{% else %}unused_github{% endif %}/workflows/staging.yaml +2 -2
  21. src/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/deploy-to-prod.yaml +1 -1
  22. src/base_template/{% if cookiecutter.cicd_runner == 'google_cloud_build' %}.cloudbuild{% else %}unused_.cloudbuild{% endif %}/staging.yaml +1 -1
  23. src/cli/commands/create.py +25 -2
  24. src/cli/commands/enhance.py +94 -15
  25. src/cli/commands/list.py +1 -1
  26. src/cli/utils/remote_template.py +1 -1
  27. src/cli/utils/template.py +120 -41
  28. src/deployment_targets/agent_engine/tests/integration/test_agent_engine_app.py +3 -3
  29. src/deployment_targets/agent_engine/{app → {{cookiecutter.agent_directory}}}/agent_engine_app.py +10 -10
  30. src/deployment_targets/cloud_run/Dockerfile +2 -2
  31. src/deployment_targets/cloud_run/tests/integration/test_server_e2e.py +3 -3
  32. src/deployment_targets/cloud_run/tests/load_test/README.md +1 -1
  33. src/deployment_targets/cloud_run/tests/load_test/load_test.py +2 -2
  34. {agents/live_api/app → src/deployment_targets/cloud_run/{{cookiecutter.agent_directory}}}/server.py +186 -7
  35. src/resources/docs/adk-cheatsheet.md +3 -3
  36. src/base_template/app/__init__.py +0 -3
  37. src/deployment_targets/cloud_run/app/server.py +0 -206
  38. src/frontends/adk_gemini_fullstack/frontend/components.json +0 -21
  39. src/frontends/adk_gemini_fullstack/frontend/eslint.config.js +0 -28
  40. src/frontends/adk_gemini_fullstack/frontend/index.html +0 -12
  41. src/frontends/adk_gemini_fullstack/frontend/package-lock.json +0 -6105
  42. src/frontends/adk_gemini_fullstack/frontend/package.json +0 -47
  43. src/frontends/adk_gemini_fullstack/frontend/src/App.tsx +0 -564
  44. src/frontends/adk_gemini_fullstack/frontend/src/components/ActivityTimeline.tsx +0 -244
  45. src/frontends/adk_gemini_fullstack/frontend/src/components/ChatMessagesView.tsx +0 -420
  46. src/frontends/adk_gemini_fullstack/frontend/src/components/InputForm.tsx +0 -60
  47. src/frontends/adk_gemini_fullstack/frontend/src/components/WelcomeScreen.tsx +0 -56
  48. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/badge.tsx +0 -46
  49. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/button.tsx +0 -59
  50. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/card.tsx +0 -92
  51. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/input.tsx +0 -21
  52. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/scroll-area.tsx +0 -56
  53. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/select.tsx +0 -183
  54. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/tabs.tsx +0 -64
  55. src/frontends/adk_gemini_fullstack/frontend/src/components/ui/textarea.tsx +0 -18
  56. src/frontends/adk_gemini_fullstack/frontend/src/global.css +0 -154
  57. src/frontends/adk_gemini_fullstack/frontend/src/main.tsx +0 -13
  58. src/frontends/adk_gemini_fullstack/frontend/src/utils.ts +0 -7
  59. src/frontends/adk_gemini_fullstack/frontend/src/vite-env.d.ts +0 -1
  60. src/frontends/adk_gemini_fullstack/frontend/tsconfig.json +0 -28
  61. src/frontends/adk_gemini_fullstack/frontend/tsconfig.node.json +0 -24
  62. src/frontends/adk_gemini_fullstack/frontend/vite.config.ts +0 -41
  63. {agent_starter_pack-0.11.2.dist-info → agent_starter_pack-0.12.0.dist-info}/WHEEL +0 -0
  64. {agent_starter_pack-0.11.2.dist-info → agent_starter_pack-0.12.0.dist-info}/entry_points.txt +0 -0
  65. {agent_starter_pack-0.11.2.dist-info → agent_starter_pack-0.12.0.dist-info}/licenses/LICENSE +0 -0
  66. /src/base_template/{app → {{cookiecutter.agent_directory}}}/utils/gcs.py +0 -0
  67. /src/base_template/{app → {{cookiecutter.agent_directory}}}/utils/tracing.py +0 -0
  68. /src/base_template/{app → {{cookiecutter.agent_directory}}}/utils/typing.py +0 -0
@@ -1,154 +0,0 @@
1
- @import "tailwindcss";
2
- @import "tw-animate-css";
3
-
4
- @custom-variant dark (&:is(.dark *));
5
-
6
- @theme inline {
7
- --radius-sm: calc(var(--radius) - 4px);
8
- --radius-md: calc(var(--radius) - 2px);
9
- --radius-lg: var(--radius);
10
- --radius-xl: calc(var(--radius) + 4px);
11
- --color-background: var(--background);
12
- --color-foreground: var(--foreground);
13
- --color-card: var(--card);
14
- --color-card-foreground: var(--card-foreground);
15
- --color-popover: var(--popover);
16
- --color-popover-foreground: var(--popover-foreground);
17
- --color-primary: var(--primary);
18
- --color-primary-foreground: var(--primary-foreground);
19
- --color-secondary: var(--secondary);
20
- --color-secondary-foreground: var(--secondary-foreground);
21
- --color-muted: var(--muted);
22
- --color-muted-foreground: var(--muted-foreground);
23
- --color-accent: var(--accent);
24
- --color-accent-foreground: var(--accent-foreground);
25
- --color-destructive: var(--destructive);
26
- --color-border: var(--border);
27
- --color-input: var(--input);
28
- --color-ring: var(--ring);
29
- --color-chart-1: var(--chart-1);
30
- --color-chart-2: var(--chart-2);
31
- --color-chart-3: var(--chart-3);
32
- --color-chart-4: var(--chart-4);
33
- --color-chart-5: var(--chart-5);
34
- --color-sidebar: var(--sidebar);
35
- --color-sidebar-foreground: var(--sidebar-foreground);
36
- --color-sidebar-primary: var(--sidebar-primary);
37
- --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
38
- --color-sidebar-accent: var(--sidebar-accent);
39
- --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
40
- --color-sidebar-border: var(--sidebar-border);
41
- --color-sidebar-ring: var(--sidebar-ring);
42
- }
43
-
44
- :root {
45
- --radius: 0.625rem;
46
- --background: oklch(1 0 0);
47
- --foreground: oklch(0.145 0 0);
48
- --card: oklch(1 0 0);
49
- --card-foreground: oklch(0.145 0 0);
50
- --popover: oklch(1 0 0);
51
- --popover-foreground: oklch(0.145 0 0);
52
- --primary: oklch(0.205 0 0);
53
- --primary-foreground: oklch(0.985 0 0);
54
- --secondary: oklch(0.97 0 0);
55
- --secondary-foreground: oklch(0.205 0 0);
56
- --muted: oklch(0.97 0 0);
57
- --muted-foreground: oklch(0.556 0 0);
58
- --accent: oklch(0.97 0 0);
59
- --accent-foreground: oklch(0.205 0 0);
60
- --destructive: oklch(0.577 0.245 27.325);
61
- --border: oklch(0.922 0 0);
62
- --input: oklch(0.922 0 0);
63
- --ring: oklch(0.708 0 0);
64
- --chart-1: oklch(0.646 0.222 41.116);
65
- --chart-2: oklch(0.6 0.118 184.704);
66
- --chart-3: oklch(0.398 0.07 227.392);
67
- --chart-4: oklch(0.828 0.189 84.429);
68
- --chart-5: oklch(0.769 0.188 70.08);
69
- --sidebar: oklch(0.985 0 0);
70
- --sidebar-foreground: oklch(0.145 0 0);
71
- --sidebar-primary: oklch(0.205 0 0);
72
- --sidebar-primary-foreground: oklch(0.985 0 0);
73
- --sidebar-accent: oklch(0.97 0 0);
74
- --sidebar-accent-foreground: oklch(0.205 0 0);
75
- --sidebar-border: oklch(0.922 0 0);
76
- --sidebar-ring: oklch(0.708 0 0);
77
- }
78
-
79
- .dark {
80
- --background: oklch(0.145 0 0);
81
- --foreground: oklch(0.985 0 0);
82
- --card: oklch(0.205 0 0);
83
- --card-foreground: oklch(0.985 0 0);
84
- --popover: oklch(0.205 0 0);
85
- --popover-foreground: oklch(0.985 0 0);
86
- --primary: oklch(0.922 0 0);
87
- --primary-foreground: oklch(0.205 0 0);
88
- --secondary: oklch(0.269 0 0);
89
- --secondary-foreground: oklch(0.985 0 0);
90
- --muted: oklch(0.269 0 0);
91
- --muted-foreground: oklch(0.708 0 0);
92
- --accent: oklch(0.269 0 0);
93
- --accent-foreground: oklch(0.985 0 0);
94
- --destructive: oklch(0.704 0.191 22.216);
95
- --border: oklch(1 0 0 / 10%);
96
- --input: oklch(1 0 0 / 15%);
97
- --ring: oklch(0.556 0 0);
98
- --chart-1: oklch(0.488 0.243 264.376);
99
- --chart-2: oklch(0.696 0.17 162.48);
100
- --chart-3: oklch(0.769 0.188 70.08);
101
- --chart-4: oklch(0.627 0.265 303.9);
102
- --chart-5: oklch(0.645 0.246 16.439);
103
- --sidebar: oklch(0.205 0 0);
104
- --sidebar-foreground: oklch(0.985 0 0);
105
- --sidebar-primary: oklch(0.488 0.243 264.376);
106
- --sidebar-primary-foreground: oklch(0.985 0 0);
107
- --sidebar-accent: oklch(0.269 0 0);
108
- --sidebar-accent-foreground: oklch(0.985 0 0);
109
- --sidebar-border: oklch(1 0 0 / 10%);
110
- --sidebar-ring: oklch(0.556 0 0);
111
- }
112
-
113
- @layer base {
114
- * {
115
- @apply border-border outline-ring/50;
116
- }
117
- body {
118
- @apply bg-background text-foreground;
119
- }
120
- }
121
-
122
- /* Animation Delays */
123
- .animation-delay-200 { animation-delay: 0.2s; }
124
- .animation-delay-400 { animation-delay: 0.4s; }
125
- .animation-delay-600 { animation-delay: 0.6s; }
126
- .animation-delay-800 { animation-delay: 0.8s; }
127
-
128
- /* Keyframes */
129
- @keyframes fadeIn {
130
- from { opacity: 0; }
131
- to { opacity: 1; }
132
- }
133
- @keyframes fadeInUp {
134
- from { opacity: 0; transform: translateY(20px); }
135
- to { opacity: 1; transform: translateY(0); }
136
- }
137
- @keyframes fadeInUpSmooth {
138
- from { opacity: 0; transform: translateY(10px); }
139
- to { opacity: 1; transform: translateY(0); }
140
- }
141
-
142
- /* Animation Classes */
143
- .animate-fadeIn {
144
- animation: fadeIn 0.5s ease-out forwards;
145
- }
146
- .animate-fadeInUp {
147
- animation: fadeInUp 0.5s ease-out forwards;
148
- }
149
- .animate-fadeInUpSmooth {
150
- animation: fadeInUpSmooth 0.3s ease-out forwards;
151
- }
152
-
153
- /* Ensure your body or html has a dark background if not already set, e.g.: */
154
- /* body { background-color: #0c0c0d; } */ /* This is similar to neutral-950 */
@@ -1,13 +0,0 @@
1
- import { StrictMode } from "react";
2
- import { createRoot } from "react-dom/client";
3
- import { BrowserRouter } from "react-router-dom";
4
- import "./global.css";
5
- import App from "./App.tsx";
6
-
7
- createRoot(document.getElementById("root")!).render(
8
- <StrictMode>
9
- <BrowserRouter>
10
- <App />
11
- </BrowserRouter>
12
- </StrictMode>
13
- );
@@ -1,7 +0,0 @@
1
- import { type ClassValue, clsx } from "clsx";
2
- import { twMerge } from "tailwind-merge";
3
-
4
- export function cn(...inputs: ClassValue[]) {
5
- return twMerge(clsx(inputs));
6
- }
7
-
@@ -1 +0,0 @@
1
- /// <reference types="vite/client" />
@@ -1,28 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
4
- "target": "ES2020",
5
- "useDefineForClassFields": true,
6
- "lib": ["ES2020", "DOM", "DOM.Iterable","dom"],
7
- "module": "ESNext",
8
- "skipLibCheck": true,
9
- "baseUrl": ".",
10
- "paths": {
11
- "@/*": ["./src/*"]
12
- },
13
- /* Bundler mode */
14
- "moduleResolution": "bundler",
15
- "allowImportingTsExtensions": true,
16
- "isolatedModules": true,
17
- "moduleDetection": "force",
18
- "noEmit": true,
19
- "jsx": "react-jsx",
20
- /* Linting */
21
- "strict": true,
22
- "noUnusedLocals": true,
23
- "noUnusedParameters": true,
24
- "noFallthroughCasesInSwitch": true,
25
- "noUncheckedSideEffectImports": true
26
- },
27
- "include": ["src","vite.config.ts"]
28
- }
@@ -1,24 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4
- "target": "ES2022",
5
- "lib": ["ES2023"],
6
- "module": "ESNext",
7
- "skipLibCheck": true,
8
-
9
- /* Bundler mode */
10
- "moduleResolution": "bundler",
11
- "allowImportingTsExtensions": true,
12
- "isolatedModules": true,
13
- "moduleDetection": "force",
14
- "noEmit": true,
15
-
16
- /* Linting */
17
- "strict": true,
18
- "noUnusedLocals": true,
19
- "noUnusedParameters": true,
20
- "noFallthroughCasesInSwitch": true,
21
- "noUncheckedSideEffectImports": true
22
- },
23
- "include": ["vite.config.ts"]
24
- }
@@ -1,41 +0,0 @@
1
- import path from "node:path";
2
- import { defineConfig } from "vite";
3
- import react from "@vitejs/plugin-react-swc";
4
- import tailwindcss from "@tailwindcss/vite";
5
-
6
- // https://vitejs.dev/config/
7
- export default defineConfig({
8
- plugins: [react(), tailwindcss()],
9
- base: "/app/",
10
- resolve: {
11
- alias: {
12
- "@": path.resolve(new URL(".", import.meta.url).pathname, "./src"),
13
- },
14
- },
15
- server: {
16
- // Makes the server accessible on the local network (e.g., for mobile testing)
17
- host: true,
18
- // Should be disabled or limited when deployed in untrusted network environments.
19
- allowedHosts: true,
20
- proxy: {
21
- // Proxy API requests to the backend server
22
- "/api": {
23
- target: "http://127.0.0.1:8000", // Default backend address
24
- changeOrigin: true,
25
- secure: false,
26
- rewrite: (path) => path.replace(/^\/api/, ''),
27
- configure: (proxy, options) => {
28
- proxy.on('error', (err, req, res) => {
29
- console.log('proxy error', err);
30
- });
31
- proxy.on('proxyReq', (proxyReq, req, res) => {
32
- console.log('Sending Request to the Target:', req.method, req.url);
33
- });
34
- proxy.on('proxyRes', (proxyRes, req, res) => {
35
- console.log('Received Response from the Target:', proxyRes.statusCode, req.url);
36
- });
37
- },
38
- },
39
- },
40
- },
41
- });