Refresh builder runtime visibility
All checks were successful
build / build (push) Successful in 59s

This commit is contained in:
robert
2026-06-08 09:04:23 -03:00
parent e5e75e2ea3
commit e6d159a853
6 changed files with 8 additions and 5 deletions

View File

@@ -39,6 +39,7 @@ class BuilderContext:
llm_temperature_mode: str | None = None
llm_temperature: float | None = None
llm_extra_body: dict[str, Any] | None = None
llm_metadata: dict[str, Any] | None = None
SYSTEM_PROMPT = """\
@@ -332,6 +333,7 @@ def build_agent_builder(ctx: BuilderContext) -> Any:
temperature_mode=ctx.llm_temperature_mode or "default",
temperature=ctx.llm_temperature,
extra_body=dict(ctx.llm_extra_body or {}),
metadata=dict(ctx.llm_metadata or {}),
)
kwargs: dict[str, Any] = {
"tools": tools,

View File

@@ -34,7 +34,7 @@ if TYPE_CHECKING:
from .config import Settings
A2A_PACK_MIN_VERSION = "0.1.80"
A2A_PACK_MIN_VERSION = "0.1.81"
A2A_PACK_SANDBOX_FALLBACK_VERSION = "0.1.79"
logger = logging.getLogger(__name__)