rapida-python 0.1.12__py3-none-any.whl → 0.1.13__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -40,7 +40,7 @@ from rapida.connections import ConnectionConfig, UserAuthInfo, ClientAuthInfo
40
40
  def get_assistant(
41
41
  client_cfg: ConnectionConfig,
42
42
  request: GetAssistantRequest,
43
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
43
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
44
44
  ) -> GetAssistantResponse:
45
45
  if auth is None:
46
46
  auth = client_cfg.auth
@@ -53,7 +53,7 @@ def get_assistant(
53
53
  def get_all_assistant(
54
54
  client_cfg: ConnectionConfig,
55
55
  request: GetAllAssistantRequest,
56
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
56
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
57
57
  ) -> GetAllAssistantResponse:
58
58
  if auth is None:
59
59
  auth = client_cfg.auth
@@ -66,7 +66,7 @@ def get_all_assistant(
66
66
  def get_assistant_conversation(
67
67
  client_cfg: ConnectionConfig,
68
68
  request: GetAssistantConversationRequest,
69
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
69
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
70
70
  ) -> GetAssistantConversationResponse:
71
71
  if auth is None:
72
72
  auth = client_cfg.auth
@@ -79,7 +79,7 @@ def get_assistant_conversation(
79
79
  def get_all_assistant_conversation(
80
80
  client_cfg: ConnectionConfig,
81
81
  request: GetAllAssistantConversationRequest,
82
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
82
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
83
83
  ) -> GetAllAssistantConversationResponse:
84
84
  if auth is None:
85
85
  auth = client_cfg.auth
@@ -92,7 +92,7 @@ def get_all_assistant_conversation(
92
92
  def get_assistant_webhook(
93
93
  client_cfg: ConnectionConfig,
94
94
  request: GetAssistantWebhookRequest,
95
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
95
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
96
96
  ) -> GetAssistantWebhookResponse:
97
97
  if auth is None:
98
98
  auth = client_cfg.auth
@@ -105,7 +105,7 @@ def get_assistant_webhook(
105
105
  def get_all_assistant_webhook(
106
106
  client_cfg: ConnectionConfig,
107
107
  request: GetAllAssistantWebhookRequest,
108
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
108
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
109
109
  ) -> GetAllAssistantWebhookResponse:
110
110
  if auth is None:
111
111
  auth = client_cfg.auth
@@ -118,7 +118,7 @@ def get_all_assistant_webhook(
118
118
  def get_assistant_knowledge(
119
119
  client_cfg: ConnectionConfig,
120
120
  request: GetAssistantKnowledgeRequest,
121
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
121
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
122
122
  ) -> GetAssistantKnowledgeResponse:
123
123
  if auth is None:
124
124
  auth = client_cfg.auth
@@ -131,7 +131,7 @@ def get_assistant_knowledge(
131
131
  def get_all_assistant_knowledge(
132
132
  client_cfg: ConnectionConfig,
133
133
  request: GetAllAssistantKnowledgeRequest,
134
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
134
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
135
135
  ) -> GetAllAssistantKnowledgeResponse:
136
136
  if auth is None:
137
137
  auth = client_cfg.auth
@@ -144,7 +144,7 @@ def get_all_assistant_knowledge(
144
144
  def get_assistant_tool(
145
145
  client_cfg: ConnectionConfig,
146
146
  request: GetAssistantToolRequest,
147
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
147
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
148
148
  ) -> GetAssistantToolResponse:
149
149
  if auth is None:
150
150
  auth = client_cfg.auth
@@ -157,7 +157,7 @@ def get_assistant_tool(
157
157
  def get_all_assistant_tool(
158
158
  client_cfg: ConnectionConfig,
159
159
  request: GetAllAssistantToolRequest,
160
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
160
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
161
161
  ) -> GetAllAssistantToolResponse:
162
162
  if auth is None:
163
163
  auth = client_cfg.auth
@@ -170,7 +170,7 @@ def get_all_assistant_tool(
170
170
  def get_assistant_webhook_log(
171
171
  client_cfg: ConnectionConfig,
172
172
  request: GetAssistantWebhookLogRequest,
173
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
173
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
174
174
  ) -> GetAssistantWebhookLogResponse:
175
175
  if auth is None:
176
176
  auth = client_cfg.auth
@@ -183,7 +183,7 @@ def get_assistant_webhook_log(
183
183
  def get_all_assistant_webhook_log(
184
184
  client_cfg: ConnectionConfig,
185
185
  request: GetAllAssistantWebhookLogRequest,
186
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
186
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
187
187
  ) -> GetAllAssistantWebhookLogResponse:
188
188
  if auth is None:
189
189
  auth = client_cfg.auth
rapida/clients/call.py CHANGED
@@ -11,7 +11,7 @@ from rapida.connections import ConnectionConfig, UserAuthInfo, ClientAuthInfo
11
11
  def create_phone_call(
12
12
  client_cfg: ConnectionConfig,
13
13
  request: CreatePhoneCallRequest,
14
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
14
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
15
15
  ) -> CreatePhoneCallResponse:
16
16
  if auth is None:
17
17
  auth = client_cfg.auth
@@ -24,7 +24,7 @@ def create_phone_call(
24
24
  def create_bulk_phone_call(
25
25
  client_cfg: ConnectionConfig,
26
26
  request: CreateBulkPhoneCallRequest,
27
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
27
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
28
28
  ) -> CreateBulkPhoneCallResponse:
29
29
  if auth is None:
30
30
  auth = client_cfg.auth
@@ -15,7 +15,7 @@ from rapida.connections import ConnectionConfig, UserAuthInfo, ClientAuthInfo
15
15
  def get_endpoint(
16
16
  client_cfg: ConnectionConfig,
17
17
  request: GetEndpointRequest,
18
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
18
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
19
19
  ) -> GetEndpointResponse:
20
20
  if auth is None:
21
21
  auth = client_cfg.auth
@@ -29,7 +29,7 @@ def get_endpoint(
29
29
  def get_all_endpoint(
30
30
  client_cfg: ConnectionConfig,
31
31
  request: GetAllEndpointRequest,
32
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
32
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
33
33
  ) -> GetAllEndpointResponse:
34
34
  if auth is None:
35
35
  auth = client_cfg.auth
@@ -42,7 +42,7 @@ def get_all_endpoint(
42
42
  def get_endpoint_log(
43
43
  client_cfg: ConnectionConfig,
44
44
  request: GetEndpointLogRequest,
45
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
45
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
46
46
  ) -> GetEndpointLogResponse:
47
47
  if auth is None:
48
48
  auth = client_cfg.auth
@@ -56,7 +56,7 @@ def get_endpoint_log(
56
56
  def get_all_endpoint_log(
57
57
  client_cfg: ConnectionConfig,
58
58
  request: GetAllEndpointLogRequest,
59
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
59
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
60
60
  ) -> GetAllEndpointLogResponse:
61
61
  if auth is None:
62
62
  auth = client_cfg.auth
rapida/clients/invoke.py CHANGED
@@ -9,7 +9,7 @@ from rapida.connections import ConnectionConfig, UserAuthInfo, ClientAuthInfo
9
9
  def invoke(
10
10
  client_cfg: ConnectionConfig,
11
11
  request: InvokeRequest,
12
- auth: Union[UserAuthInfo, ClientAuthInfo, None],
12
+ auth: Union[UserAuthInfo, ClientAuthInfo, None] = None,
13
13
  ) -> InvokeResponse:
14
14
  if auth is None:
15
15
  auth = client_cfg.auth
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rapida-python
3
- Version: 0.1.12
3
+ Version: 0.1.13
4
4
  Summary: RapidaAI SDK to integrate rapida.ai APIs
5
5
  Author-email: RapidaAI <code@rapida.ai>
6
6
  License-Expression: MIT
@@ -1,10 +1,10 @@
1
1
  rapida/__init__.py,sha256=phO4x0wmszn177MiM1lBB7c2H6E-x2NpbgmEAs2TWlQ,29298
2
2
  rapida/version.py,sha256=viGOWqdZKnddhX3OaC8ukCMltj9eQG53LVDTj-Pha3o,1269
3
3
  rapida/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- rapida/clients/assistant.py,sha256=BeQWiclta1rXjsPdqzMTghia1tjSpwrbUJotlxYFntc,5458
5
- rapida/clients/call.py,sha256=6H02Itmu4SWM_hw3jdLtFBRkGb3-IpLwxoxJXcezaGI,965
6
- rapida/clients/endpoint.py,sha256=XejL-3qiPAwDtYPu87UWcb1mrS4USbZOk3KZePsmdBw,1692
7
- rapida/clients/invoke.py,sha256=j2z_FPB3xo7k8Nk1rO0MYD5mpkAMAhETWRCkM4THh2s,493
4
+ rapida/clients/assistant.py,sha256=H4yQ6NFqcAbNXu-EEFmgmnmEBqkqPJaTVbRRwceSNWA,5542
5
+ rapida/clients/call.py,sha256=XYGGsa9lYtjNcisVd0IxM_-vr5QXgzpclXlVBcXdD3E,979
6
+ rapida/clients/endpoint.py,sha256=BiFaB4H0ZyFtQx_ywJQz5KjmArqm1xQmf8mjshjXVyk,1720
7
+ rapida/clients/invoke.py,sha256=jeCdFThHQIcGQ7rVqwKTzJLS-NRrR8yI20AzdWnJy9c,500
8
8
  rapida/clients/protos/assistant_analysis_pb2.py,sha256=JgPAQIR09OnnnDo4FawosOpVIhQ9nQn65fTGDGCuSIY,9862
9
9
  rapida/clients/protos/assistant_analysis_pb2.pyi,sha256=Mw1I2iuM4vHhnZa-qEhhp4RBmuTytZvvZR3-TGrt1LQ,8070
10
10
  rapida/clients/protos/assistant_analysis_pb2_grpc.py,sha256=y3iidcsQd04zHdGeqzI8A1PCypx_nhiu59WszCfgdQM,899
@@ -73,7 +73,7 @@ rapida/utils/rapida_header.py,sha256=LdqZsRHfXpcT4YCC8Ag_eoNYa6WQx6PVfRyfH12Ey3A
73
73
  rapida/utils/rapida_region.py,sha256=ZO6_VGTlawtM2G_XOPVQldupOlMRRS__A97KGu8TQkE,1788
74
74
  rapida/utils/rapida_source.py,sha256=ZHfYUSgtzv3Jpj-4PCjdZXyhbWPWbY-JZMCM1jYk5Fw,2828
75
75
  rapida/utils/rapida_value.py,sha256=4TFIbPmMqcR0RB-381rWTqrxgBLY5doTsPXihOA1-Dc,6091
76
- rapida_python-0.1.12.dist-info/METADATA,sha256=tVZU-pffXQG6Fm_w8q7JTQdYO2Y8OSUER55JPhXl9zA,2487
77
- rapida_python-0.1.12.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
78
- rapida_python-0.1.12.dist-info/top_level.txt,sha256=1OJt64VrZ3n2N8GBqlUSoQ3qvPv30QBYD--xOZv3R2g,7
79
- rapida_python-0.1.12.dist-info/RECORD,,
76
+ rapida_python-0.1.13.dist-info/METADATA,sha256=P6sap0o2j4QYh1zgpzrNQPMXKzUC6Soph-GKBIcgrM8,2487
77
+ rapida_python-0.1.13.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
78
+ rapida_python-0.1.13.dist-info/top_level.txt,sha256=1OJt64VrZ3n2N8GBqlUSoQ3qvPv30QBYD--xOZv3R2g,7
79
+ rapida_python-0.1.13.dist-info/RECORD,,