forked from humanloop/humanloop-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent_inline_tool.py
More file actions
24 lines (18 loc) · 770 Bytes
/
agent_inline_tool.py
File metadata and controls
24 lines (18 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# This file was auto-generated by Fern from our API Definition.
import typing
import pydantic
from ..core.pydantic_utilities import IS_PYDANTIC_V2
from ..core.unchecked_base_model import UncheckedBaseModel
from .on_agent_call_enum import OnAgentCallEnum
from .tool_function import ToolFunction
class AgentInlineTool(UncheckedBaseModel):
type: typing.Literal["inline"] = "inline"
json_schema: ToolFunction
on_agent_call: typing.Optional[OnAgentCallEnum] = None
if IS_PYDANTIC_V2:
model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2
else:
class Config:
frozen = True
smart_union = True
extra = pydantic.Extra.allow