Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update python sdk docs #272

Merged
merged 3 commits into from
Apr 18, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix: remove unused outdated types in docs
  • Loading branch information
philipbalbas committed Apr 18, 2024
commit 7fc7dd38810b9b14e6f5e9430f7194f6f2bb4e12
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
Loading