"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.""" from __future__ import annotations from openrouter.types import BaseModel, Nullable import pydantic from pydantic import ConfigDict from typing import Any, Dict, Optional from typing_extensions import NotRequired, TypedDict class SubagentNestedToolTypedDict(TypedDict): r"""A tool made available to the subagent. Only OpenRouter server tools (e.g. openrouter:web_search) are supported; function tools are rejected because the worker has no way to execute them. The subagent tool may not list itself.""" type: str parameters: NotRequired[Dict[str, Nullable[Any]]] class SubagentNestedTool(BaseModel): r"""A tool made available to the subagent. Only OpenRouter server tools (e.g. openrouter:web_search) are supported; function tools are rejected because the worker has no way to execute them. The subagent tool may not list itself.""" model_config = ConfigDict( populate_by_name=True, arbitrary_types_allowed=True, extra="allow" ) __pydantic_extra__: Dict[str, Nullable[Any]] = pydantic.Field(init=False) type: str parameters: Optional[Dict[str, Nullable[Any]]] = None @property def additional_properties(self): return self.__pydantic_extra__ @additional_properties.setter def additional_properties(self, value): self.__pydantic_extra__ = value # pyright: ignore[reportIncompatibleVariableOverride]