agent-starter-pack 0.13.1__py3-none-any.whl → 0.14.1__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 (25) hide show
  1. {agent_starter_pack-0.13.1.dist-info → agent_starter_pack-0.14.1.dist-info}/METADATA +13 -4
  2. {agent_starter_pack-0.13.1.dist-info → agent_starter_pack-0.14.1.dist-info}/RECORD +23 -25
  3. agents/adk_base/notebooks/evaluating_adk_agent.ipynb +78 -71
  4. agents/agentic_rag/notebooks/evaluating_adk_agent.ipynb +78 -71
  5. llm.txt +87 -39
  6. src/base_template/Makefile +16 -1
  7. src/base_template/README.md +1 -1
  8. src/cli/commands/create.py +27 -5
  9. src/cli/commands/enhance.py +132 -6
  10. src/cli/commands/setup_cicd.py +91 -69
  11. src/cli/utils/cicd.py +105 -0
  12. src/cli/utils/gcp.py +19 -13
  13. src/cli/utils/logging.py +13 -1
  14. src/cli/utils/template.py +3 -0
  15. src/frontends/live_api_react/frontend/package-lock.json +9 -9
  16. src/frontends/live_api_react/frontend/src/App.tsx +12 -153
  17. src/frontends/live_api_react/frontend/src/components/side-panel/SidePanel.tsx +352 -3
  18. src/frontends/live_api_react/frontend/src/components/side-panel/side-panel.scss +249 -2
  19. src/frontends/live_api_react/frontend/src/utils/multimodal-live-client.ts +4 -1
  20. src/resources/docs/adk-cheatsheet.md +285 -38
  21. src/frontends/live_api_react/frontend/src/components/control-tray/ControlTray.tsx +0 -217
  22. src/frontends/live_api_react/frontend/src/components/control-tray/control-tray.scss +0 -201
  23. {agent_starter_pack-0.13.1.dist-info → agent_starter_pack-0.14.1.dist-info}/WHEEL +0 -0
  24. {agent_starter_pack-0.13.1.dist-info → agent_starter_pack-0.14.1.dist-info}/entry_points.txt +0 -0
  25. {agent_starter_pack-0.13.1.dist-info → agent_starter_pack-0.14.1.dist-info}/licenses/LICENSE +0 -0
@@ -1,201 +0,0 @@
1
- /**
2
- * Copyright 2025 Google LLC
3
- *
4
- * Licensed under the Apache License, Version 2.0 (the "License");
5
- * you may not use this file except in compliance with the License.
6
- * You may obtain a copy of the License at
7
- *
8
- * http://www.apache.org/licenses/LICENSE-2.0
9
- *
10
- * Unless required by applicable law or agreed to in writing, software
11
- * distributed under the License is distributed on an "AS IS" BASIS,
12
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- * See the License for the specific language governing permissions and
14
- * limitations under the License.
15
- */
16
-
17
- /* stylelint-disable */
18
- .action-button {
19
- display: flex;
20
- align-items: center;
21
- justify-content: center;
22
- background: var(--Neutral-20);
23
- color: var(--Neutral-60);
24
- font-size: 1.25rem;
25
- line-height: 1.75rem;
26
- text-transform: lowercase;
27
- cursor: pointer;
28
- animation: opacity-pulse 3s ease-in infinite;
29
- transition: all 0.2s ease-in-out;
30
- width: 48px;
31
- height: 48px;
32
- border-radius: 18px;
33
- border: 1px solid rgba(0, 0, 0, 0);
34
- user-select: none;
35
- cursor: pointer;
36
-
37
- &:focus {
38
- border: 2px solid var(--Neutral-20);
39
- outline: 2px solid var(--Neutral-80);
40
- }
41
-
42
- &.outlined {
43
- background: var(--Neutral-2);
44
- border: 1px solid var(--Neutral-20);
45
- }
46
-
47
- .no-action {
48
- pointer-events: none;
49
- }
50
-
51
- &:hover {
52
- background: rgba(0, 0, 0, 0);
53
- border: 1px solid var(--Neutral-20);
54
- }
55
-
56
- &.connected {
57
- background: var(--Blue-800);
58
- color: var(--Blue-500);
59
-
60
- &:hover {
61
- border: 1px solid var(--Blue-500);
62
- }
63
- }
64
- }
65
-
66
- @property --volume {
67
- syntax: "length";
68
- inherit: false;
69
- initial-value: 0px;
70
- }
71
-
72
- .disabled .mic-button,
73
- .mic-button.disabled {
74
- &:before {
75
- background: rgba(0, 0, 0, 0);
76
- }
77
- }
78
-
79
- .mic-button {
80
- position: relative;
81
- background-color: var(--accent-red);
82
- z-index: 1;
83
- color: black;
84
- transition: all 0.2s ease-in;
85
-
86
- &:focus {
87
- border: 2px solid var(--Neutral-20);
88
- outline: 2px solid var(--Red-500);
89
- }
90
-
91
- &:hover {
92
- background-color: var(--Red-400);
93
- }
94
-
95
- &:before {
96
- position: absolute;
97
- z-index: -1;
98
- top: calc(var(--volume) * -1);
99
- left: calc(var(--volume) * -1);
100
- display: block;
101
- content: "";
102
- opacity: 0.35;
103
- background-color: var(--Red-500);
104
- width: calc(100% + var(--volume) * 2);
105
- height: calc(100% + var(--volume) * 2);
106
- border-radius: 24px;
107
- transition: all 0.02s ease-in-out;
108
- }
109
- }
110
-
111
- .connect-toggle {
112
- &:focus {
113
- border: 2px solid var(--Neutral-20);
114
- outline: 2px solid var(--Neutral-80);
115
- }
116
-
117
- &:not(.connected) {
118
- background-color: var(--Blue-500);
119
- color: var(--Neutral-5);
120
- }
121
- }
122
-
123
- .control-tray {
124
- position: absolute;
125
- bottom: 0;
126
- left: 50%;
127
- transform: translate(-50%, 0);
128
- display: inline-flex;
129
- justify-content: center;
130
- align-items: flex-start;
131
- gap: 8px;
132
- padding-bottom: 18px;
133
-
134
- .disabled .action-button,
135
- .action-button.disabled {
136
- background: rgba(0, 0, 0, 0);
137
- border: 1px solid var(--Neutral-30, #404547);
138
- color: var(--Neutral-30);
139
- }
140
-
141
- .connection-container {
142
- display: flex;
143
- flex-direction: column;
144
- justify-content: center;
145
- align-items: center;
146
- gap: 4px;
147
-
148
- .connection-button-container {
149
- border-radius: 27px;
150
- border: 1px solid var(--Neutral-30);
151
- background: var(--Neutral-5);
152
- padding: 10px;
153
- }
154
-
155
- .text-indicator {
156
- font-size: 11px;
157
- color: var(--Blue-500);
158
- user-select: none;
159
- }
160
-
161
- &:not(.connected) {
162
- .text-indicator {
163
- opacity: 0;
164
- }
165
- }
166
- }
167
- }
168
-
169
- .actions-nav {
170
- background: var(--Neutral-5);
171
- border: 1px solid var(--Neutral-30);
172
- border-radius: 27px;
173
- display: inline-flex;
174
- gap: 12px;
175
- align-items: center;
176
- overflow: clip;
177
- padding: 10px;
178
-
179
- transition: all 0.6s ease-in;
180
-
181
- & > * {
182
- display: flex;
183
- align-items: center;
184
- flex-direction: column;
185
- gap: 1rem;
186
- }
187
- }
188
-
189
- @keyframes opacity-pulse {
190
- 0% {
191
- opacity: 0.9;
192
- }
193
-
194
- 50% {
195
- opacity: 1;
196
- }
197
-
198
- 100% {
199
- opacity: 0.9;
200
- }
201
- }