Skip to content
Closed
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
119ce10
Adds unit tests for example_util.convert_examples_to_text()
BowedMars2 Mar 5, 2026
76d88f9
Removes the TODO comment
BowedMars2 Mar 5, 2026
6632fcb
Makes line 365 more readable
BowedMars2 Mar 5, 2026
8c63e87
Add tests for build_example_si
BowedMars2 Mar 12, 2026
599b5d3
Merge branch 'google:main' into Issue-#4623
BowedMars2 Mar 12, 2026
ec51379
Parametrizes all unit tests to ensure different models don't break an…
BowedMars2 Mar 12, 2026
37b01de
Ensures gemini2 check aligns with the check in example_util
BowedMars2 Mar 12, 2026
b4dd245
Fixes a docstring
BowedMars2 Mar 12, 2026
feeca3f
Fixes a docstring and makes the code more concise
BowedMars2 Mar 12, 2026
3045c35
Autoformat.sh
BowedMars2 Mar 12, 2026
9eaec00
Merge branch 'main' into Issue-#4623
BowedMars2 Mar 12, 2026
92c7745
Merge branch 'main' into Issue-#4623
rohityan Mar 17, 2026
b64a508
Fixes changes incorrectly made by autoformat.sh to unrelated files
BowedMars2 Mar 19, 2026
7432d51
Merge remote-tracking branch 'origin/Issue-#4623' into Issue-#4623
BowedMars2 Mar 19, 2026
ecae4f4
Merge branch 'main' into Issue-#4623
rohityan Mar 20, 2026
173aa1f
Merge branch 'main' into Issue-#4623
BowedMars2 Mar 23, 2026
983e33e
Merge branch 'main' into Issue-#4623
BowedMars2 Mar 24, 2026
84a0429
Merge branch 'main' into Issue-#4623
BowedMars2 Mar 26, 2026
004097b
Merge branch 'google:main' into Issue-#4623
BowedMars2 Apr 2, 2026
35491b8
Merge branch 'main' into Issue-#4623
BowedMars2 Apr 2, 2026
b72d1eb
Merge branch 'main' into Issue-#4623
BowedMars2 Apr 16, 2026
efa090e
Merge branch 'main' into Issue-#4623
BowedMars2 Apr 16, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion contributing/samples/gepa/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
from tau_bench.types import EnvRunResult
from tau_bench.types import RunConfig
import tau_bench_agent as tau_bench_agent_lib

import utils


Expand Down
1 change: 0 additions & 1 deletion contributing/samples/gepa/run_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
from absl import flags
import experiment
from google.genai import types

import utils

_OUTPUT_DIR = flags.DEFINE_string(
Expand Down
1 change: 0 additions & 1 deletion src/google/adk/examples/example_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
_FUNCTION_RESPONSE_SUFFIX = "\n```\n"


# TODO(yaojie): Add unit tests for this function.
def convert_examples_to_text(
examples: list[Example], model: Optional[str]
) -> str:
Expand Down
13 changes: 13 additions & 0 deletions tests/unittests/examples/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
Loading
Loading