qanswer_sdk 3.1399.0__py3-none-any.whl → 3.1400.0__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.
- qanswer_sdk/__init__.py +5 -4
- qanswer_sdk/api/__init__.py +4 -3
- qanswer_sdk/api/{connector_e_consilium_search_index_connector_api.py → connector_e_consilium_search_index_api_api.py} +1 -1
- qanswer_sdk/api/{connector_imap_connector_api.py → connector_imapapi_api.py} +1 -1
- qanswer_sdk/api/{connector_publication_office_controller_api.py → connector_publication_office_api_api.py} +1 -1
- qanswer_sdk/api/health_check_api_api.py +280 -0
- qanswer_sdk/api_client.py +1 -1
- qanswer_sdk/configuration.py +1 -1
- {qanswer_sdk-3.1399.0.dist-info → qanswer_sdk-3.1400.0.dist-info}/METADATA +2 -2
- {qanswer_sdk-3.1399.0.dist-info → qanswer_sdk-3.1400.0.dist-info}/RECORD +11 -10
- {qanswer_sdk-3.1399.0.dist-info → qanswer_sdk-3.1400.0.dist-info}/WHEEL +0 -0
qanswer_sdk/__init__.py
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "3.
|
|
17
|
+
__version__ = "3.1400.0"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from qanswer_sdk.api.admin_api import AdminApi
|
|
@@ -26,10 +26,13 @@ from qanswer_sdk.api.chatbot_api import ChatbotApi
|
|
|
26
26
|
from qanswer_sdk.api.connector_audio_api import ConnectorAudioApi
|
|
27
27
|
from qanswer_sdk.api.connector_document_api import ConnectorDocumentApi
|
|
28
28
|
from qanswer_sdk.api.connector_e_consilium_api import ConnectorEConsiliumApi
|
|
29
|
+
from qanswer_sdk.api.connector_e_consilium_search_index_api_api import ConnectorEConsiliumSearchIndexAPIApi
|
|
29
30
|
from qanswer_sdk.api.connector_google_drive_api import ConnectorGoogleDriveApi
|
|
31
|
+
from qanswer_sdk.api.connector_imapapi_api import ConnectorIMAPAPIApi
|
|
30
32
|
from qanswer_sdk.api.connector_one_drive_api import ConnectorOneDriveApi
|
|
31
33
|
from qanswer_sdk.api.connector_onenote_api import ConnectorOnenoteApi
|
|
32
34
|
from qanswer_sdk.api.connector_pinecone_api import ConnectorPineconeApi
|
|
35
|
+
from qanswer_sdk.api.connector_publication_office_api_api import ConnectorPublicationOfficeAPIApi
|
|
33
36
|
from qanswer_sdk.api.connector_qn_a_api import ConnectorQnAApi
|
|
34
37
|
from qanswer_sdk.api.connector_rdf_api import ConnectorRDFApi
|
|
35
38
|
from qanswer_sdk.api.connector_rdf_answer_api import ConnectorRDFAnswerApi
|
|
@@ -41,6 +44,7 @@ from qanswer_sdk.api.connectors_data_api import ConnectorsDataApi
|
|
|
41
44
|
from qanswer_sdk.api.conversation_logs_api import ConversationLogsApi
|
|
42
45
|
from qanswer_sdk.api.dataset_config_api import DatasetConfigApi
|
|
43
46
|
from qanswer_sdk.api.debug_api import DebugApi
|
|
47
|
+
from qanswer_sdk.api.health_check_api_api import HealthCheckAPIApi
|
|
44
48
|
from qanswer_sdk.api.llm_api import LlmApi
|
|
45
49
|
from qanswer_sdk.api.payment_api import PaymentApi
|
|
46
50
|
from qanswer_sdk.api.socket_api import SocketApi
|
|
@@ -62,9 +66,6 @@ from qanswer_sdk.api.unit_teams_api import UnitTeamsApi
|
|
|
62
66
|
from qanswer_sdk.api.unit_user_api import UnitUserApi
|
|
63
67
|
from qanswer_sdk.api.v1_chat_completion_api import V1ChatCompletionApi
|
|
64
68
|
from qanswer_sdk.api.v1_embeddings_api import V1EmbeddingsApi
|
|
65
|
-
from qanswer_sdk.api.connector_e_consilium_search_index_connector_api import ConnectorEConsiliumSearchIndexConnectorApi
|
|
66
|
-
from qanswer_sdk.api.connector_imap_connector_api import ConnectorImapConnectorApi
|
|
67
|
-
from qanswer_sdk.api.connector_publication_office_controller_api import ConnectorPublicationOfficeControllerApi
|
|
68
69
|
|
|
69
70
|
# import ApiClient
|
|
70
71
|
from qanswer_sdk.api_response import ApiResponse
|
qanswer_sdk/api/__init__.py
CHANGED
|
@@ -10,10 +10,13 @@ from qanswer_sdk.api.chatbot_api import ChatbotApi
|
|
|
10
10
|
from qanswer_sdk.api.connector_audio_api import ConnectorAudioApi
|
|
11
11
|
from qanswer_sdk.api.connector_document_api import ConnectorDocumentApi
|
|
12
12
|
from qanswer_sdk.api.connector_e_consilium_api import ConnectorEConsiliumApi
|
|
13
|
+
from qanswer_sdk.api.connector_e_consilium_search_index_api_api import ConnectorEConsiliumSearchIndexAPIApi
|
|
13
14
|
from qanswer_sdk.api.connector_google_drive_api import ConnectorGoogleDriveApi
|
|
15
|
+
from qanswer_sdk.api.connector_imapapi_api import ConnectorIMAPAPIApi
|
|
14
16
|
from qanswer_sdk.api.connector_one_drive_api import ConnectorOneDriveApi
|
|
15
17
|
from qanswer_sdk.api.connector_onenote_api import ConnectorOnenoteApi
|
|
16
18
|
from qanswer_sdk.api.connector_pinecone_api import ConnectorPineconeApi
|
|
19
|
+
from qanswer_sdk.api.connector_publication_office_api_api import ConnectorPublicationOfficeAPIApi
|
|
17
20
|
from qanswer_sdk.api.connector_qn_a_api import ConnectorQnAApi
|
|
18
21
|
from qanswer_sdk.api.connector_rdf_api import ConnectorRDFApi
|
|
19
22
|
from qanswer_sdk.api.connector_rdf_answer_api import ConnectorRDFAnswerApi
|
|
@@ -25,6 +28,7 @@ from qanswer_sdk.api.connectors_data_api import ConnectorsDataApi
|
|
|
25
28
|
from qanswer_sdk.api.conversation_logs_api import ConversationLogsApi
|
|
26
29
|
from qanswer_sdk.api.dataset_config_api import DatasetConfigApi
|
|
27
30
|
from qanswer_sdk.api.debug_api import DebugApi
|
|
31
|
+
from qanswer_sdk.api.health_check_api_api import HealthCheckAPIApi
|
|
28
32
|
from qanswer_sdk.api.llm_api import LlmApi
|
|
29
33
|
from qanswer_sdk.api.payment_api import PaymentApi
|
|
30
34
|
from qanswer_sdk.api.socket_api import SocketApi
|
|
@@ -46,7 +50,4 @@ from qanswer_sdk.api.unit_teams_api import UnitTeamsApi
|
|
|
46
50
|
from qanswer_sdk.api.unit_user_api import UnitUserApi
|
|
47
51
|
from qanswer_sdk.api.v1_chat_completion_api import V1ChatCompletionApi
|
|
48
52
|
from qanswer_sdk.api.v1_embeddings_api import V1EmbeddingsApi
|
|
49
|
-
from qanswer_sdk.api.connector_e_consilium_search_index_connector_api import ConnectorEConsiliumSearchIndexConnectorApi
|
|
50
|
-
from qanswer_sdk.api.connector_imap_connector_api import ConnectorImapConnectorApi
|
|
51
|
-
from qanswer_sdk.api.connector_publication_office_controller_api import ConnectorPublicationOfficeControllerApi
|
|
52
53
|
|
|
@@ -31,7 +31,7 @@ from qanswer_sdk.api_response import ApiResponse
|
|
|
31
31
|
from qanswer_sdk.rest import RESTResponseType
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
class
|
|
34
|
+
class ConnectorEConsiliumSearchIndexAPIApi:
|
|
35
35
|
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
36
36
|
Ref: https://openapi-generator.tech
|
|
37
37
|
|
|
@@ -33,7 +33,7 @@ from qanswer_sdk.api_response import ApiResponse
|
|
|
33
33
|
from qanswer_sdk.rest import RESTResponseType
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
class
|
|
36
|
+
class ConnectorIMAPAPIApi:
|
|
37
37
|
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
38
38
|
Ref: https://openapi-generator.tech
|
|
39
39
|
|
|
@@ -31,7 +31,7 @@ from qanswer_sdk.api_response import ApiResponse
|
|
|
31
31
|
from qanswer_sdk.rest import RESTResponseType
|
|
32
32
|
|
|
33
33
|
|
|
34
|
-
class
|
|
34
|
+
class ConnectorPublicationOfficeAPIApi:
|
|
35
35
|
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
36
36
|
Ref: https://openapi-generator.tech
|
|
37
37
|
|
|
@@ -0,0 +1,280 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
QAnswer: Api Documentation
|
|
5
|
+
|
|
6
|
+
APIs provided by QAnswer
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
import warnings
|
|
15
|
+
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
16
|
+
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
17
|
+
from typing_extensions import Annotated
|
|
18
|
+
|
|
19
|
+
from typing import Any, Dict
|
|
20
|
+
|
|
21
|
+
from qanswer_sdk.api_client import ApiClient, RequestSerialized
|
|
22
|
+
from qanswer_sdk.api_response import ApiResponse
|
|
23
|
+
from qanswer_sdk.rest import RESTResponseType
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
class HealthCheckAPIApi:
|
|
27
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
28
|
+
Ref: https://openapi-generator.tech
|
|
29
|
+
|
|
30
|
+
Do not edit the class manually.
|
|
31
|
+
"""
|
|
32
|
+
|
|
33
|
+
def __init__(self, api_client=None) -> None:
|
|
34
|
+
if api_client is None:
|
|
35
|
+
api_client = ApiClient.get_default()
|
|
36
|
+
self.api_client = api_client
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
@validate_call
|
|
40
|
+
def get_method_name(
|
|
41
|
+
self,
|
|
42
|
+
_request_timeout: Union[
|
|
43
|
+
None,
|
|
44
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
45
|
+
Tuple[
|
|
46
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
47
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
48
|
+
]
|
|
49
|
+
] = None,
|
|
50
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
51
|
+
_content_type: Optional[StrictStr] = None,
|
|
52
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
53
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
54
|
+
) -> object:
|
|
55
|
+
"""get_method_name
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
59
|
+
number provided, it will be total request
|
|
60
|
+
timeout. It can also be a pair (tuple) of
|
|
61
|
+
(connection, read) timeouts.
|
|
62
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
63
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
64
|
+
request; this effectively ignores the
|
|
65
|
+
authentication in the spec for a single request.
|
|
66
|
+
:type _request_auth: dict, optional
|
|
67
|
+
:param _content_type: force content-type for the request.
|
|
68
|
+
:type _content_type: str, Optional
|
|
69
|
+
:param _headers: set to override the headers for a single
|
|
70
|
+
request; this effectively ignores the headers
|
|
71
|
+
in the spec for a single request.
|
|
72
|
+
:type _headers: dict, optional
|
|
73
|
+
:param _host_index: set to override the host_index for a single
|
|
74
|
+
request; this effectively ignores the host_index
|
|
75
|
+
in the spec for a single request.
|
|
76
|
+
:type _host_index: int, optional
|
|
77
|
+
:return: Returns the result object.
|
|
78
|
+
""" # noqa: E501
|
|
79
|
+
|
|
80
|
+
_param = self._get_method_name_serialize(
|
|
81
|
+
_request_auth=_request_auth,
|
|
82
|
+
_content_type=_content_type,
|
|
83
|
+
_headers=_headers,
|
|
84
|
+
_host_index=_host_index
|
|
85
|
+
)
|
|
86
|
+
|
|
87
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
88
|
+
'200': "object",
|
|
89
|
+
}
|
|
90
|
+
response_data = self.api_client.call_api(
|
|
91
|
+
*_param,
|
|
92
|
+
_request_timeout=_request_timeout
|
|
93
|
+
)
|
|
94
|
+
response_data.read()
|
|
95
|
+
return self.api_client.response_deserialize(
|
|
96
|
+
response_data=response_data,
|
|
97
|
+
response_types_map=_response_types_map,
|
|
98
|
+
).data
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
@validate_call
|
|
102
|
+
def get_method_name_with_http_info(
|
|
103
|
+
self,
|
|
104
|
+
_request_timeout: Union[
|
|
105
|
+
None,
|
|
106
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
107
|
+
Tuple[
|
|
108
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
109
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
110
|
+
]
|
|
111
|
+
] = None,
|
|
112
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
113
|
+
_content_type: Optional[StrictStr] = None,
|
|
114
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
115
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
116
|
+
) -> ApiResponse[object]:
|
|
117
|
+
"""get_method_name
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
121
|
+
number provided, it will be total request
|
|
122
|
+
timeout. It can also be a pair (tuple) of
|
|
123
|
+
(connection, read) timeouts.
|
|
124
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
125
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
126
|
+
request; this effectively ignores the
|
|
127
|
+
authentication in the spec for a single request.
|
|
128
|
+
:type _request_auth: dict, optional
|
|
129
|
+
:param _content_type: force content-type for the request.
|
|
130
|
+
:type _content_type: str, Optional
|
|
131
|
+
:param _headers: set to override the headers for a single
|
|
132
|
+
request; this effectively ignores the headers
|
|
133
|
+
in the spec for a single request.
|
|
134
|
+
:type _headers: dict, optional
|
|
135
|
+
:param _host_index: set to override the host_index for a single
|
|
136
|
+
request; this effectively ignores the host_index
|
|
137
|
+
in the spec for a single request.
|
|
138
|
+
:type _host_index: int, optional
|
|
139
|
+
:return: Returns the result object.
|
|
140
|
+
""" # noqa: E501
|
|
141
|
+
|
|
142
|
+
_param = self._get_method_name_serialize(
|
|
143
|
+
_request_auth=_request_auth,
|
|
144
|
+
_content_type=_content_type,
|
|
145
|
+
_headers=_headers,
|
|
146
|
+
_host_index=_host_index
|
|
147
|
+
)
|
|
148
|
+
|
|
149
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
150
|
+
'200': "object",
|
|
151
|
+
}
|
|
152
|
+
response_data = self.api_client.call_api(
|
|
153
|
+
*_param,
|
|
154
|
+
_request_timeout=_request_timeout
|
|
155
|
+
)
|
|
156
|
+
response_data.read()
|
|
157
|
+
return self.api_client.response_deserialize(
|
|
158
|
+
response_data=response_data,
|
|
159
|
+
response_types_map=_response_types_map,
|
|
160
|
+
)
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
@validate_call
|
|
164
|
+
def get_method_name_without_preload_content(
|
|
165
|
+
self,
|
|
166
|
+
_request_timeout: Union[
|
|
167
|
+
None,
|
|
168
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
169
|
+
Tuple[
|
|
170
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
171
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
172
|
+
]
|
|
173
|
+
] = None,
|
|
174
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
175
|
+
_content_type: Optional[StrictStr] = None,
|
|
176
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
177
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
178
|
+
) -> RESTResponseType:
|
|
179
|
+
"""get_method_name
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
183
|
+
number provided, it will be total request
|
|
184
|
+
timeout. It can also be a pair (tuple) of
|
|
185
|
+
(connection, read) timeouts.
|
|
186
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
187
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
188
|
+
request; this effectively ignores the
|
|
189
|
+
authentication in the spec for a single request.
|
|
190
|
+
:type _request_auth: dict, optional
|
|
191
|
+
:param _content_type: force content-type for the request.
|
|
192
|
+
:type _content_type: str, Optional
|
|
193
|
+
:param _headers: set to override the headers for a single
|
|
194
|
+
request; this effectively ignores the headers
|
|
195
|
+
in the spec for a single request.
|
|
196
|
+
:type _headers: dict, optional
|
|
197
|
+
:param _host_index: set to override the host_index for a single
|
|
198
|
+
request; this effectively ignores the host_index
|
|
199
|
+
in the spec for a single request.
|
|
200
|
+
:type _host_index: int, optional
|
|
201
|
+
:return: Returns the result object.
|
|
202
|
+
""" # noqa: E501
|
|
203
|
+
|
|
204
|
+
_param = self._get_method_name_serialize(
|
|
205
|
+
_request_auth=_request_auth,
|
|
206
|
+
_content_type=_content_type,
|
|
207
|
+
_headers=_headers,
|
|
208
|
+
_host_index=_host_index
|
|
209
|
+
)
|
|
210
|
+
|
|
211
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
212
|
+
'200': "object",
|
|
213
|
+
}
|
|
214
|
+
response_data = self.api_client.call_api(
|
|
215
|
+
*_param,
|
|
216
|
+
_request_timeout=_request_timeout
|
|
217
|
+
)
|
|
218
|
+
return response_data.response
|
|
219
|
+
|
|
220
|
+
|
|
221
|
+
def _get_method_name_serialize(
|
|
222
|
+
self,
|
|
223
|
+
_request_auth,
|
|
224
|
+
_content_type,
|
|
225
|
+
_headers,
|
|
226
|
+
_host_index,
|
|
227
|
+
) -> RequestSerialized:
|
|
228
|
+
|
|
229
|
+
_host = None
|
|
230
|
+
|
|
231
|
+
_collection_formats: Dict[str, str] = {
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
_path_params: Dict[str, str] = {}
|
|
235
|
+
_query_params: List[Tuple[str, str]] = []
|
|
236
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
237
|
+
_form_params: List[Tuple[str, str]] = []
|
|
238
|
+
_files: Dict[
|
|
239
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
240
|
+
] = {}
|
|
241
|
+
_body_params: Optional[bytes] = None
|
|
242
|
+
|
|
243
|
+
# process the path parameters
|
|
244
|
+
# process the query parameters
|
|
245
|
+
# process the header parameters
|
|
246
|
+
# process the form parameters
|
|
247
|
+
# process the body parameter
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
# set the HTTP header `Accept`
|
|
251
|
+
if 'Accept' not in _header_params:
|
|
252
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
253
|
+
[
|
|
254
|
+
'*/*'
|
|
255
|
+
]
|
|
256
|
+
)
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
# authentication setting
|
|
260
|
+
_auth_settings: List[str] = [
|
|
261
|
+
'QAnswer-Api-Key',
|
|
262
|
+
'Bearer'
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
return self.api_client.param_serialize(
|
|
266
|
+
method='GET',
|
|
267
|
+
resource_path='/api/health/check',
|
|
268
|
+
path_params=_path_params,
|
|
269
|
+
query_params=_query_params,
|
|
270
|
+
header_params=_header_params,
|
|
271
|
+
body=_body_params,
|
|
272
|
+
post_params=_form_params,
|
|
273
|
+
files=_files,
|
|
274
|
+
auth_settings=_auth_settings,
|
|
275
|
+
collection_formats=_collection_formats,
|
|
276
|
+
_host=_host,
|
|
277
|
+
_request_auth=_request_auth
|
|
278
|
+
)
|
|
279
|
+
|
|
280
|
+
|
qanswer_sdk/api_client.py
CHANGED
|
@@ -90,7 +90,7 @@ class ApiClient:
|
|
|
90
90
|
self.default_headers[header_name] = header_value
|
|
91
91
|
self.cookie = cookie
|
|
92
92
|
# Set default User-Agent.
|
|
93
|
-
self.user_agent = 'OpenAPI-Generator/3.
|
|
93
|
+
self.user_agent = 'OpenAPI-Generator/3.1400.0/python'
|
|
94
94
|
self.client_side_validation = configuration.client_side_validation
|
|
95
95
|
|
|
96
96
|
def __enter__(self):
|
qanswer_sdk/configuration.py
CHANGED
|
@@ -421,7 +421,7 @@ conf = qanswer_sdk.Configuration(
|
|
|
421
421
|
"OS: {env}\n"\
|
|
422
422
|
"Python Version: {pyversion}\n"\
|
|
423
423
|
"Version of the API: 1.0\n"\
|
|
424
|
-
"SDK Package Version: 3.
|
|
424
|
+
"SDK Package Version: 3.1400.0".\
|
|
425
425
|
format(env=sys.platform, pyversion=sys.version)
|
|
426
426
|
|
|
427
427
|
def get_host_settings(self):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: qanswer_sdk
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.1400.0
|
|
4
4
|
Summary: QAnswer: Api Documentation
|
|
5
5
|
Home-page: https://github.com/GIT_USER_ID/GIT_REPO_ID
|
|
6
6
|
License: NoLicense
|
|
@@ -228,7 +228,7 @@ print(response.answer)
|
|
|
228
228
|
## 📌 Versioning
|
|
229
229
|
|
|
230
230
|
This SDK follows the version of the QAnswer API.
|
|
231
|
-
The current version is: `3.
|
|
231
|
+
The current version is: `3.1400.0 (branch: main)`
|
|
232
232
|
|
|
233
233
|
---
|
|
234
234
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
qanswer_sdk/__init__.py,sha256=
|
|
2
|
-
qanswer_sdk/api/__init__.py,sha256=
|
|
1
|
+
qanswer_sdk/__init__.py,sha256=8LRNggwkt0qaT9o1I0mJvRagvCaYGz7W60Vu_UKa5Z8,29998
|
|
2
|
+
qanswer_sdk/api/__init__.py,sha256=qOjbgvAjL3-0FN477a04p1ZfED9fdwOrNJbpAJ78VDM,3318
|
|
3
3
|
qanswer_sdk/api/admin_api.py,sha256=mInmqz3poGNoQJ4RDO4hDNXvAYwHpteg0CeK01O0-iw,196215
|
|
4
4
|
qanswer_sdk/api/ai_assistant_access_rights_api.py,sha256=doVSEXNV8Um-W56e5Pf0TZWuXWwXDuWlRg5zNA8-vl8,198574
|
|
5
5
|
qanswer_sdk/api/ai_assistant_api.py,sha256=aD5hlyMdwGfD9MYxtr7AMUwl_Q4rFs7FF7AcbRuM96I,207231
|
|
@@ -9,13 +9,13 @@ qanswer_sdk/api/chatbot_api.py,sha256=nq66sd-2K68tSwvfa4f39pdKJzgjOGOxVN-Z3c885n
|
|
|
9
9
|
qanswer_sdk/api/connector_audio_api.py,sha256=HnLEDTnG-fOpIYFyftOhK9P0fLKTB1AMyUFxREM5juE,121356
|
|
10
10
|
qanswer_sdk/api/connector_document_api.py,sha256=LMGfMS--89NuYcpvU1hZ_3zoiQIKd10R2R9jJIwyHgs,68753
|
|
11
11
|
qanswer_sdk/api/connector_e_consilium_api.py,sha256=lrlUdGiv8y_Pv2MY7casq8KvtSLjRzvdLhuyZ0yTMZc,12493
|
|
12
|
-
qanswer_sdk/api/
|
|
12
|
+
qanswer_sdk/api/connector_e_consilium_search_index_api_api.py,sha256=vF2ohElY1Jmhn5CpRyqVuGieeBWWVBNk7AaGD4Wjcb4,47782
|
|
13
13
|
qanswer_sdk/api/connector_google_drive_api.py,sha256=9kVHg-uMAIWZ5UAqkKkeuaCaJseHx2GNKkDLQtcM3yY,70104
|
|
14
|
-
qanswer_sdk/api/
|
|
14
|
+
qanswer_sdk/api/connector_imapapi_api.py,sha256=zrC_QY6AvEv8EZ-8Y3uZCZUiwLLQA65G60EpCJnRAN8,69768
|
|
15
15
|
qanswer_sdk/api/connector_one_drive_api.py,sha256=TUZlJ24ClO0Fp-nIbZQwZ45hE4mwNM5mPOc2kPspwOE,58809
|
|
16
16
|
qanswer_sdk/api/connector_onenote_api.py,sha256=FgVn5sQKt-4XNdcobsLg3-JdfxCAvufCuyPonyOkIfA,59326
|
|
17
17
|
qanswer_sdk/api/connector_pinecone_api.py,sha256=JGwxJi2XSuf93BZg2fYj4tuw3oW9TmCayJ7kvD2FcHM,35030
|
|
18
|
-
qanswer_sdk/api/
|
|
18
|
+
qanswer_sdk/api/connector_publication_office_api_api.py,sha256=ajIJk434l0GRqrabrZPE-2W8XJtfsF19Ds93KQ7Ij14,47226
|
|
19
19
|
qanswer_sdk/api/connector_qn_a_api.py,sha256=V7xUFmDvM67o1kVCp-3tlRD-uZge1L2vC72OxdzAXG0,58772
|
|
20
20
|
qanswer_sdk/api/connector_rdf_answer_api.py,sha256=4PWolSmlZzuQAW49dnPl-OY9-jgA-3nb4IGrikdaKHw,51655
|
|
21
21
|
qanswer_sdk/api/connector_rdf_api.py,sha256=tBvKgWiOGKisem_evKaQgnmdfZqEKgGsmWv4FU2bZr0,198858
|
|
@@ -27,6 +27,7 @@ qanswer_sdk/api/connectors_data_api.py,sha256=jFG1p05p1I2f0FHI9qsHVDZr1F6R-8gJUN
|
|
|
27
27
|
qanswer_sdk/api/conversation_logs_api.py,sha256=Hc-h4sOO2R-xci424lC3zQYRjQ04g31Qq1hrHrbiSiY,250289
|
|
28
28
|
qanswer_sdk/api/dataset_config_api.py,sha256=2uhwkSEvQfH1eNtLCTLC5TfnqegA_SwZ_pRwQFrn7rI,88685
|
|
29
29
|
qanswer_sdk/api/debug_api.py,sha256=wVzdh5ZJE52PXfA_SCT67vXGM8XCobDGQ4jnkMi6A-w,10337
|
|
30
|
+
qanswer_sdk/api/health_check_api_api.py,sha256=bMjw2j-ul-l2S0sn18bG2oWm4hkO6So48Ncj2uZZF1s,10099
|
|
30
31
|
qanswer_sdk/api/llm_api.py,sha256=DAQGQTRhL1lpG2pMv9DTD6XC7Hoxb4jiKSlEirDOvGY,20797
|
|
31
32
|
qanswer_sdk/api/payment_api.py,sha256=Xa2-bHk1vKlZgrLQ5o5EnX3PUi38QRKx95mUhDLFtB0,58124
|
|
32
33
|
qanswer_sdk/api/socket_api.py,sha256=as9TBz2Ja_PKTqLW5EjyWM6oJPzhMBfe9JfZJuko9uk,114696
|
|
@@ -48,9 +49,9 @@ qanswer_sdk/api/unit_teams_api.py,sha256=Soc3QkvulKcEUUkz_JIh08qGhO15pMFhTxy8Y0X
|
|
|
48
49
|
qanswer_sdk/api/unit_user_api.py,sha256=0Bs5CC8mGziJEbB4fF_hJzqXFf8TvmSTpLZ1KCzinr8,349567
|
|
49
50
|
qanswer_sdk/api/v1_chat_completion_api.py,sha256=dZb24eHPCa-bG_6K4B2DTuTTqrWLuoKgYFWhAarjB1c,11575
|
|
50
51
|
qanswer_sdk/api/v1_embeddings_api.py,sha256=Oal0PnTuL3AZACXsPhofY6BuOKoM24ne0HuXhReK_SA,11769
|
|
51
|
-
qanswer_sdk/api_client.py,sha256=
|
|
52
|
+
qanswer_sdk/api_client.py,sha256=OohdS8SeqtlEugqI79Q6lnqA_FEyLWk6rsnwvjNH8y0,27387
|
|
52
53
|
qanswer_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
53
|
-
qanswer_sdk/configuration.py,sha256=
|
|
54
|
+
qanswer_sdk/configuration.py,sha256=VJLQnC718gqUWmU_I5m4mTUMY36IaicXcrJb296eHd4,16184
|
|
54
55
|
qanswer_sdk/exceptions.py,sha256=BCaz7REoUyrBq8zuVBNTmEHGvJfM1YyLSyOnkB1XQLU,5907
|
|
55
56
|
qanswer_sdk/models/__init__.py,sha256=yEotRhUIMY1UlvW1rVI7ryeu9fApdz173_ez-1kZmXg,26208
|
|
56
57
|
qanswer_sdk/models/access_pdf_payload_model.py,sha256=0oamrJeAIZdpjmcWby_PFmz-GrXD0ObDU3ecRpf7nRI,3626
|
|
@@ -406,6 +407,6 @@ qanswer_sdk/models/website_connector_settings.py,sha256=mlKuTG7Nsmv4XyEDUpVlg8ZO
|
|
|
406
407
|
qanswer_sdk/models/widget_configs.py,sha256=H38KJ4wCup7MXD-PeTHaF0xnR1VZmCTSIxNNmQzIPVc,3703
|
|
407
408
|
qanswer_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
408
409
|
qanswer_sdk/rest.py,sha256=9cpA9eEQsfuHcThVnF2c7CEK0HCJYGyGZnWqmfkQpT8,9344
|
|
409
|
-
qanswer_sdk-3.
|
|
410
|
-
qanswer_sdk-3.
|
|
411
|
-
qanswer_sdk-3.
|
|
410
|
+
qanswer_sdk-3.1400.0.dist-info/METADATA,sha256=Uo8_72WhJj99lsQaRRUBAaEJAp-CN0iBLKg66xhwdIc,6532
|
|
411
|
+
qanswer_sdk-3.1400.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
412
|
+
qanswer_sdk-3.1400.0.dist-info/RECORD,,
|
|
File without changes
|