Skip to content
1 change: 1 addition & 0 deletions contributing/dev/utils/build_llms_txt.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
– includes Python API reference from HTML files
– includes adk-python repository README
"""

from __future__ import annotations

import argparse
Expand Down
6 changes: 4 additions & 2 deletions contributing/samples/cache_analysis/run_cache_experiments.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,8 @@ async def analyze_cache_performance_from_sessions(
print(
" Cache Utilization:"
f" {cached_analysis['cache_utilization_ratio_percent']:.1f}%"
f" ({cached_analysis['requests_with_cache_hits']}/{cached_analysis['total_requests']} requests)"
f" ({cached_analysis['requests_with_cache_hits']}/{cached_analysis['total_requests']}"
" requests)"
)
print(
" Avg Cached Tokens/Request:"
Expand Down Expand Up @@ -383,7 +384,8 @@ async def analyze_cache_performance_from_sessions(
print(
" Cache Utilization:"
f" {uncached_analysis['cache_utilization_ratio_percent']:.1f}%"
f" ({uncached_analysis['requests_with_cache_hits']}/{uncached_analysis['total_requests']} requests)"
f" ({uncached_analysis['requests_with_cache_hits']}/{uncached_analysis['total_requests']}"
" requests)"
)
print(
" Avg Cached Tokens/Request:"
Expand Down
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
3,073 changes: 1,538 additions & 1,535 deletions contributing/samples/gepa/gepa_tau_bench.ipynb

Large diffs are not rendered by default.

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: 1 addition & 0 deletions contributing/samples/gepa/tau_bench_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
pip install -e . --quiet
```
"""

from __future__ import annotations

from typing import Any
Expand Down
Loading