Skip to content

Commit

Permalink
fix: remove unused outdated types in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
philipbalbas committed Apr 18, 2024
1 parent 8941e8d commit 7fc7dd3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/sdks/python-sdk-docs/client-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ async def create_agent(
self,
name: str,
about: str,
instructions: typing.Optional[typing.List[Instruction]] = OMIT,
instructions: typing.Optional[typing.List[str]] = OMIT,
tools: typing.Optional[typing.List[CreateToolRequest]] = OMIT,
default_settings: typing.Optional[AgentDefaultSettings] = OMIT,
model: str,
Expand Down Expand Up @@ -775,7 +775,7 @@ async def update_agent(
self,
agent_id: str,
about: typing.Optional[str] = OMIT,
instructions: typing.Optional[typing.List[Instruction]] = OMIT,
instructions: typing.Optional[typing.List[str]] = OMIT,
name: typing.Optional[str] = OMIT,
model: typing.Optional[str] = OMIT,
default_settings: typing.Optional[AgentDefaultSettings] = OMIT,
Expand Down Expand Up @@ -987,7 +987,7 @@ def create_agent(
self,
name: str,
about: str,
instructions: typing.Optional[typing.List[Instruction]] = OMIT,
instructions: typing.Optional[typing.List[str]] = OMIT,
tools: typing.Optional[typing.List[CreateToolRequest]] = OMIT,
default_settings: typing.Optional[AgentDefaultSettings] = OMIT,
model: str,
Expand Down Expand Up @@ -1628,7 +1628,7 @@ def update_agent(
self,
agent_id: str,
about: typing.Optional[str] = OMIT,
instructions: typing.Optional[typing.List[Instruction]] = OMIT,
instructions: typing.Optional[typing.List[str]] = OMIT,
name: typing.Optional[str] = OMIT,
model: typing.Optional[str] = OMIT,
default_settings: typing.Optional[AgentDefaultSettings] = OMIT,
Expand Down

0 comments on commit 7fc7dd3

Please sign in to comment.