-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclient.py
More file actions
258 lines (212 loc) · 10.8 KB
/
Copy pathclient.py
File metadata and controls
258 lines (212 loc) · 10.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# This file was auto-generated by Fern from our API Definition.
import typing
from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
from ..core.request_options import RequestOptions
from .raw_client import AsyncRawAgentManagementClient, RawAgentManagementClient
from .types.agent_think_agent_management_request_on_listening_action import (
AgentThinkAgentManagementRequestOnListeningAction,
)
from .types.agent_think_agent_management_request_on_speaking_action import (
AgentThinkAgentManagementRequestOnSpeakingAction,
)
from .types.agent_think_agent_management_request_on_thinking_action import (
AgentThinkAgentManagementRequestOnThinkingAction,
)
from .types.agent_think_agent_management_response import AgentThinkAgentManagementResponse
# this is used as the default value for optional parameters
OMIT = typing.cast(typing.Any, ...)
class AgentManagementClient:
def __init__(self, *, client_wrapper: SyncClientWrapper):
self._raw_client = RawAgentManagementClient(client_wrapper=client_wrapper)
@property
def with_raw_response(self) -> RawAgentManagementClient:
"""
Retrieves a raw implementation of this client that returns raw responses.
Returns
-------
RawAgentManagementClient
"""
return self._raw_client
def agent_think(
self,
appid: str,
agent_id: str,
*,
text: str,
on_listening_action: typing.Optional[AgentThinkAgentManagementRequestOnListeningAction] = OMIT,
on_thinking_action: typing.Optional[AgentThinkAgentManagementRequestOnThinkingAction] = OMIT,
on_speaking_action: typing.Optional[AgentThinkAgentManagementRequestOnSpeakingAction] = OMIT,
interruptable: typing.Optional[bool] = OMIT,
metadata: typing.Optional[typing.Dict[str, str]] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> AgentThinkAgentManagementResponse:
"""
Send a custom text instruction to the specified conversational AI agent instance.
The instruction is injected into the current conversation pipeline as user input, and the agent processes and responds to it following the standard user input logic.
Use this endpoint for the following scenarios:
- **Implicit instruction injection**: Inject hidden context or directives into the conversation.
- **Client-side event triggering**: Notify the agent of client-side events, such as a user clicking a button.
- **Voice and text collaboration**: Combine text instructions with voice input for richer interaction.
Parameters
----------
appid : str
The App ID of the project.
agent_id : str
The agent instance ID you obtained after successfully calling `join` to start a conversational AI agent.
text : str
The custom instruction text to inject into the current conversation pipeline. The system processes this as user input.
on_listening_action : typing.Optional[AgentThinkAgentManagementRequestOnListeningAction]
The action to take when the agent is in a listening state:
- `inject`: Inject the custom text instruction into the current turn without interrupting it.
- `interrupt`: Immediately interrupt the current flow and initiate a new round of dialogue.
- `ignore`: Ignore the request.
on_thinking_action : typing.Optional[AgentThinkAgentManagementRequestOnThinkingAction]
The action to take when the agent is in a thinking state:
- `interrupt`: Interrupt the current state and start a new conversation turn.
- `ignore`: Ignore the request.
on_speaking_action : typing.Optional[AgentThinkAgentManagementRequestOnSpeakingAction]
The action to take when the agent is in a speaking state:
- `interrupt`: Interrupt the current state and start a new conversation turn.
- `ignore`: Ignore the request.
interruptable : typing.Optional[bool]
Whether user speech can interrupt the injected instruction:
- `true`: User speech can interrupt the instruction.
- `false`: User speech cannot interrupt the instruction.
metadata : typing.Optional[typing.Dict[str, str]]
Custom metadata in key-value pair format. Use this field to pass additional business information such as identifiers or model references.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
AgentThinkAgentManagementResponse
Request was successful. The response body contains the result of the request.
Examples
--------
from agora_agent import Agora
client = Agora(
authorization="YOUR_AUTHORIZATION",
username="YOUR_USERNAME",
password="YOUR_PASSWORD",
)
client.agent_management.agent_think(
appid="appid",
agent_id="agentId",
text="The user just clicked the purchase button.",
on_listening_action="inject",
on_thinking_action="interrupt",
on_speaking_action="ignore",
interruptable=True,
metadata={"publisher": "user123", "model": "deepseek-r1"},
)
"""
_response = self._raw_client.agent_think(
appid,
agent_id,
text=text,
on_listening_action=on_listening_action,
on_thinking_action=on_thinking_action,
on_speaking_action=on_speaking_action,
interruptable=interruptable,
metadata=metadata,
request_options=request_options,
)
return _response.data
class AsyncAgentManagementClient:
def __init__(self, *, client_wrapper: AsyncClientWrapper):
self._raw_client = AsyncRawAgentManagementClient(client_wrapper=client_wrapper)
@property
def with_raw_response(self) -> AsyncRawAgentManagementClient:
"""
Retrieves a raw implementation of this client that returns raw responses.
Returns
-------
AsyncRawAgentManagementClient
"""
return self._raw_client
async def agent_think(
self,
appid: str,
agent_id: str,
*,
text: str,
on_listening_action: typing.Optional[AgentThinkAgentManagementRequestOnListeningAction] = OMIT,
on_thinking_action: typing.Optional[AgentThinkAgentManagementRequestOnThinkingAction] = OMIT,
on_speaking_action: typing.Optional[AgentThinkAgentManagementRequestOnSpeakingAction] = OMIT,
interruptable: typing.Optional[bool] = OMIT,
metadata: typing.Optional[typing.Dict[str, str]] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> AgentThinkAgentManagementResponse:
"""
Send a custom text instruction to the specified conversational AI agent instance.
The instruction is injected into the current conversation pipeline as user input, and the agent processes and responds to it following the standard user input logic.
Use this endpoint for the following scenarios:
- **Implicit instruction injection**: Inject hidden context or directives into the conversation.
- **Client-side event triggering**: Notify the agent of client-side events, such as a user clicking a button.
- **Voice and text collaboration**: Combine text instructions with voice input for richer interaction.
Parameters
----------
appid : str
The App ID of the project.
agent_id : str
The agent instance ID you obtained after successfully calling `join` to start a conversational AI agent.
text : str
The custom instruction text to inject into the current conversation pipeline. The system processes this as user input.
on_listening_action : typing.Optional[AgentThinkAgentManagementRequestOnListeningAction]
The action to take when the agent is in a listening state:
- `inject`: Inject the custom text instruction into the current turn without interrupting it.
- `interrupt`: Immediately interrupt the current flow and initiate a new round of dialogue.
- `ignore`: Ignore the request.
on_thinking_action : typing.Optional[AgentThinkAgentManagementRequestOnThinkingAction]
The action to take when the agent is in a thinking state:
- `interrupt`: Interrupt the current state and start a new conversation turn.
- `ignore`: Ignore the request.
on_speaking_action : typing.Optional[AgentThinkAgentManagementRequestOnSpeakingAction]
The action to take when the agent is in a speaking state:
- `interrupt`: Interrupt the current state and start a new conversation turn.
- `ignore`: Ignore the request.
interruptable : typing.Optional[bool]
Whether user speech can interrupt the injected instruction:
- `true`: User speech can interrupt the instruction.
- `false`: User speech cannot interrupt the instruction.
metadata : typing.Optional[typing.Dict[str, str]]
Custom metadata in key-value pair format. Use this field to pass additional business information such as identifiers or model references.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
AgentThinkAgentManagementResponse
Request was successful. The response body contains the result of the request.
Examples
--------
import asyncio
from agora_agent import AsyncAgora
client = AsyncAgora(
authorization="YOUR_AUTHORIZATION",
username="YOUR_USERNAME",
password="YOUR_PASSWORD",
)
async def main() -> None:
await client.agent_management.agent_think(
appid="appid",
agent_id="agentId",
text="The user just clicked the purchase button.",
on_listening_action="inject",
on_thinking_action="interrupt",
on_speaking_action="ignore",
interruptable=True,
metadata={"publisher": "user123", "model": "deepseek-r1"},
)
asyncio.run(main())
"""
_response = await self._raw_client.agent_think(
appid,
agent_id,
text=text,
on_listening_action=on_listening_action,
on_thinking_action=on_thinking_action,
on_speaking_action=on_speaking_action,
interruptable=interruptable,
metadata=metadata,
request_options=request_options,
)
return _response.data