@@ -59,6 +59,7 @@ def run(
5959 * ,
6060 prompt : str ,
6161 config : AmbientAgentConfigParam | Omit = omit ,
62+ team : bool | Omit = omit ,
6263 title : str | Omit = omit ,
6364 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
6465 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -77,6 +78,8 @@ def run(
7778
7879 config: Configuration for an ambient agent task
7980
81+ team: Make the task visible to all team members, not only the calling user
82+
8083 title: Custom title for the task (auto-generated if not provided)
8184
8285 extra_headers: Send extra headers
@@ -93,6 +96,7 @@ def run(
9396 {
9497 "prompt" : prompt ,
9598 "config" : config ,
99+ "team" : team ,
96100 "title" : title ,
97101 },
98102 agent_run_params .AgentRunParams ,
@@ -133,6 +137,7 @@ async def run(
133137 * ,
134138 prompt : str ,
135139 config : AmbientAgentConfigParam | Omit = omit ,
140+ team : bool | Omit = omit ,
136141 title : str | Omit = omit ,
137142 # Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
138143 # The extra values given here take precedence over values defined on the client or passed to this method.
@@ -151,6 +156,8 @@ async def run(
151156
152157 config: Configuration for an ambient agent task
153158
159+ team: Make the task visible to all team members, not only the calling user
160+
154161 title: Custom title for the task (auto-generated if not provided)
155162
156163 extra_headers: Send extra headers
@@ -167,6 +174,7 @@ async def run(
167174 {
168175 "prompt" : prompt ,
169176 "config" : config ,
177+ "team" : team ,
170178 "title" : title ,
171179 },
172180 agent_run_params .AgentRunParams ,
0 commit comments