-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathclient.py
More file actions
554 lines (446 loc) · 18.1 KB
/
Copy pathclient.py
File metadata and controls
554 lines (446 loc) · 18.1 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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
# This file was auto-generated by Fern from our API Definition.
import typing
from ..core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
from ..core.pagination import AsyncPager, SyncPager
from ..core.request_options import RequestOptions
from .raw_client import AsyncRawTelephonyClient, RawTelephonyClient
from .types.call_telephony_request_properties import CallTelephonyRequestProperties
from .types.call_telephony_request_sip import CallTelephonyRequestSip
from .types.call_telephony_response import CallTelephonyResponse
from .types.get_telephony_response import GetTelephonyResponse
from .types.hangup_telephony_response import HangupTelephonyResponse
from .types.list_telephony_request_type import ListTelephonyRequestType
from .types.list_telephony_response import ListTelephonyResponse
from .types.list_telephony_response_data_list_item import ListTelephonyResponseDataListItem
# this is used as the default value for optional parameters
OMIT = typing.cast(typing.Any, ...)
class TelephonyClient:
def __init__(self, *, client_wrapper: SyncClientWrapper):
self._raw_client = RawTelephonyClient(client_wrapper=client_wrapper)
@property
def with_raw_response(self) -> RawTelephonyClient:
"""
Retrieves a raw implementation of this client that returns raw responses.
Returns
-------
RawTelephonyClient
"""
return self._raw_client
def list(
self,
appid: str,
*,
number: typing.Optional[str] = None,
from_time: typing.Optional[int] = None,
to_time: typing.Optional[int] = None,
type: typing.Optional[ListTelephonyRequestType] = None,
limit: typing.Optional[int] = None,
cursor: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> SyncPager[ListTelephonyResponseDataListItem, ListTelephonyResponse]:
"""
Query historical call records for a specified appid based on the filter criteria.
Parameters
----------
appid : str
The App ID of the project.
number : typing.Optional[str]
Filter by phone number. Can be either the calling number or the called number.
from_time : typing.Optional[int]
Query list start timestamp (in seconds). Default is 60 days ago.
to_time : typing.Optional[int]
Query list end timestamp (in seconds). Default is current time.
type : typing.Optional[ListTelephonyRequestType]
Call type filter:
- `inbound`: Inbound call.
- `outbound`: Outbound call.
If not specified, all call types are returned.
limit : typing.Optional[int]
Maximum number of items returned in a single page.
cursor : typing.Optional[str]
Pagination cursor. Use the `agent_id` from the previous page as the cursor for the next page.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
SyncPager[ListTelephonyResponseDataListItem, ListTelephonyResponse]
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",
)
response = client.telephony.list(
appid="appid",
)
for item in response:
yield item
# alternatively, you can paginate page-by-page
for page in response.iter_pages():
yield page
"""
return self._raw_client.list(
appid,
number=number,
from_time=from_time,
to_time=to_time,
type=type,
limit=limit,
cursor=cursor,
request_options=request_options,
)
def call(
self,
appid: str,
*,
name: str,
sip: CallTelephonyRequestSip,
properties: CallTelephonyRequestProperties,
pipeline_id: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> CallTelephonyResponse:
"""
Initiate an outbound call to a specified number and create an agent to join the specified RTC channel.
Use this endpoint to initiate an outbound call to the specified number and create an agent that joins the target RTC channel. The agent waits for the callee to answer.
Parameters
----------
appid : str
The App ID of the project.
name : str
The name identifier of the call session.
sip : CallTelephonyRequestSip
SIP (Session Initiation Protocol) call configuration object.
properties : CallTelephonyRequestProperties
Call attribute configuration. The content of this field varies depending on the invocation method:
- **Using pipeline ID**: Simply pass in `channel`, `token`, `agent_rtc_uid`, and `remote_rtc_uids`.
- **Using complete configuration**: Pass in the complete parameters of the [Start a conversational AI agent](https://docs.agora.io/en/conversational-ai/rest-api/agent/join) `properties`, including all required fields such as `channel`, `token`, `agent_rtc_uid`, `remote_rtc_uids`, `tts`, and `llm`.
pipeline_id : typing.Optional[str]
The unique ID of a published project in AI Studio.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
CallTelephonyResponse
Request was successful. The response body contains the result of the request.
Examples
--------
from agora_agent import Agora
from agora_agent.telephony import (
CallTelephonyRequestProperties,
CallTelephonyRequestSip,
)
client = Agora(
authorization="YOUR_AUTHORIZATION",
username="YOUR_USERNAME",
password="YOUR_PASSWORD",
)
client.telephony.call(
appid="appid",
name="customer_service",
sip=CallTelephonyRequestSip(
to_number="+19876543210",
from_number="+11234567890",
rtc_uid="100",
rtc_token="<agora_sip_rtc_token>",
),
pipeline_id="fzufjlweixxxxnlp",
properties=CallTelephonyRequestProperties(
channel="<agora_channel>",
token="<agora_channel_token>",
agent_rtc_uid="111",
remote_rtc_uids=["100"],
),
)
"""
_response = self._raw_client.call(
appid, name=name, sip=sip, properties=properties, pipeline_id=pipeline_id, request_options=request_options
)
return _response.data
def get(
self, appid: str, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> GetTelephonyResponse:
"""
Retrieve the call status and related information of a specified agent.
Parameters
----------
appid : str
The App ID of the project.
agent_id : str
The agent ID you obtained after successfully calling the API to initiate an outbound call.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetTelephonyResponse
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.telephony.get(
appid="appid",
agent_id="agent_id",
)
"""
_response = self._raw_client.get(appid, agent_id, request_options=request_options)
return _response.data
def hangup(
self, appid: str, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> HangupTelephonyResponse:
"""
Instruct the agent to proactively hang up the ongoing call and leave the RTC channel.
Parameters
----------
appid : str
The App ID of the project.
agent_id : str
The agent ID you obtained after successfully calling the API to initiate an outbound call.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
HangupTelephonyResponse
Request was successful. The response body is empty.
Examples
--------
from agora_agent import Agora
client = Agora(
authorization="YOUR_AUTHORIZATION",
username="YOUR_USERNAME",
password="YOUR_PASSWORD",
)
client.telephony.hangup(
appid="appid",
agent_id="agent_id",
)
"""
_response = self._raw_client.hangup(appid, agent_id, request_options=request_options)
return _response.data
class AsyncTelephonyClient:
def __init__(self, *, client_wrapper: AsyncClientWrapper):
self._raw_client = AsyncRawTelephonyClient(client_wrapper=client_wrapper)
@property
def with_raw_response(self) -> AsyncRawTelephonyClient:
"""
Retrieves a raw implementation of this client that returns raw responses.
Returns
-------
AsyncRawTelephonyClient
"""
return self._raw_client
async def list(
self,
appid: str,
*,
number: typing.Optional[str] = None,
from_time: typing.Optional[int] = None,
to_time: typing.Optional[int] = None,
type: typing.Optional[ListTelephonyRequestType] = None,
limit: typing.Optional[int] = None,
cursor: typing.Optional[str] = None,
request_options: typing.Optional[RequestOptions] = None,
) -> AsyncPager[ListTelephonyResponseDataListItem, ListTelephonyResponse]:
"""
Query historical call records for a specified appid based on the filter criteria.
Parameters
----------
appid : str
The App ID of the project.
number : typing.Optional[str]
Filter by phone number. Can be either the calling number or the called number.
from_time : typing.Optional[int]
Query list start timestamp (in seconds). Default is 60 days ago.
to_time : typing.Optional[int]
Query list end timestamp (in seconds). Default is current time.
type : typing.Optional[ListTelephonyRequestType]
Call type filter:
- `inbound`: Inbound call.
- `outbound`: Outbound call.
If not specified, all call types are returned.
limit : typing.Optional[int]
Maximum number of items returned in a single page.
cursor : typing.Optional[str]
Pagination cursor. Use the `agent_id` from the previous page as the cursor for the next page.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
AsyncPager[ListTelephonyResponseDataListItem, ListTelephonyResponse]
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:
response = await client.telephony.list(
appid="appid",
)
async for item in response:
yield item
# alternatively, you can paginate page-by-page
async for page in response.iter_pages():
yield page
asyncio.run(main())
"""
return await self._raw_client.list(
appid,
number=number,
from_time=from_time,
to_time=to_time,
type=type,
limit=limit,
cursor=cursor,
request_options=request_options,
)
async def call(
self,
appid: str,
*,
name: str,
sip: CallTelephonyRequestSip,
properties: CallTelephonyRequestProperties,
pipeline_id: typing.Optional[str] = OMIT,
request_options: typing.Optional[RequestOptions] = None,
) -> CallTelephonyResponse:
"""
Initiate an outbound call to a specified number and create an agent to join the specified RTC channel.
Use this endpoint to initiate an outbound call to the specified number and create an agent that joins the target RTC channel. The agent waits for the callee to answer.
Parameters
----------
appid : str
The App ID of the project.
name : str
The name identifier of the call session.
sip : CallTelephonyRequestSip
SIP (Session Initiation Protocol) call configuration object.
properties : CallTelephonyRequestProperties
Call attribute configuration. The content of this field varies depending on the invocation method:
- **Using pipeline ID**: Simply pass in `channel`, `token`, `agent_rtc_uid`, and `remote_rtc_uids`.
- **Using complete configuration**: Pass in the complete parameters of the [Start a conversational AI agent](https://docs.agora.io/en/conversational-ai/rest-api/agent/join) `properties`, including all required fields such as `channel`, `token`, `agent_rtc_uid`, `remote_rtc_uids`, `tts`, and `llm`.
pipeline_id : typing.Optional[str]
The unique ID of a published project in AI Studio.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
CallTelephonyResponse
Request was successful. The response body contains the result of the request.
Examples
--------
import asyncio
from agora_agent import AsyncAgora
from agora_agent.telephony import (
CallTelephonyRequestProperties,
CallTelephonyRequestSip,
)
client = AsyncAgora(
authorization="YOUR_AUTHORIZATION",
username="YOUR_USERNAME",
password="YOUR_PASSWORD",
)
async def main() -> None:
await client.telephony.call(
appid="appid",
name="customer_service",
sip=CallTelephonyRequestSip(
to_number="+19876543210",
from_number="+11234567890",
rtc_uid="100",
rtc_token="<agora_sip_rtc_token>",
),
pipeline_id="fzufjlweixxxxnlp",
properties=CallTelephonyRequestProperties(
channel="<agora_channel>",
token="<agora_channel_token>",
agent_rtc_uid="111",
remote_rtc_uids=["100"],
),
)
asyncio.run(main())
"""
_response = await self._raw_client.call(
appid, name=name, sip=sip, properties=properties, pipeline_id=pipeline_id, request_options=request_options
)
return _response.data
async def get(
self, appid: str, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> GetTelephonyResponse:
"""
Retrieve the call status and related information of a specified agent.
Parameters
----------
appid : str
The App ID of the project.
agent_id : str
The agent ID you obtained after successfully calling the API to initiate an outbound call.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
GetTelephonyResponse
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.telephony.get(
appid="appid",
agent_id="agent_id",
)
asyncio.run(main())
"""
_response = await self._raw_client.get(appid, agent_id, request_options=request_options)
return _response.data
async def hangup(
self, appid: str, agent_id: str, *, request_options: typing.Optional[RequestOptions] = None
) -> HangupTelephonyResponse:
"""
Instruct the agent to proactively hang up the ongoing call and leave the RTC channel.
Parameters
----------
appid : str
The App ID of the project.
agent_id : str
The agent ID you obtained after successfully calling the API to initiate an outbound call.
request_options : typing.Optional[RequestOptions]
Request-specific configuration.
Returns
-------
HangupTelephonyResponse
Request was successful. The response body is empty.
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.telephony.hangup(
appid="appid",
agent_id="agent_id",
)
asyncio.run(main())
"""
_response = await self._raw_client.hangup(appid, agent_id, request_options=request_options)
return _response.data