|
10 | 10 | from __future__ import absolute_import |
11 | 11 |
|
12 | 12 | # import models into model package |
13 | | -from taskingai.client.models.entity.action import Action |
14 | | -from taskingai.client.models.entity.action_authentication import ActionAuthentication |
15 | | -from taskingai.client.models.entity.action_authentication_type import ActionAuthenticationType |
16 | | -from taskingai.client.models.entity.assistant import Assistant |
17 | | -from taskingai.client.models.entity.assistant_retrieval import AssistantRetrieval |
18 | | -from taskingai.client.models.entity.assistant_tool import AssistantTool |
19 | | -from taskingai.client.models.entity.chat import Chat |
20 | | -from taskingai.client.models.entity.chat_completion import ChatCompletion |
21 | | -from taskingai.client.models.entity.chat_completion_assistant_message import ChatCompletionAssistantMessage |
22 | | -from taskingai.client.models.entity.chat_completion_function import ChatCompletionFunction |
23 | | -from taskingai.client.models.entity.chat_completion_function_call import ChatCompletionFunctionCall |
24 | | -from taskingai.client.models.entity.chat_completion_function_message import ChatCompletionFunctionMessage |
25 | | -from taskingai.client.models.entity.chat_completion_role import ChatCompletionRole |
26 | | -from taskingai.client.models.entity.chat_completion_system_message import ChatCompletionSystemMessage |
27 | | -from taskingai.client.models.entity.chat_completion_user_message import ChatCompletionUserMessage |
28 | | -from taskingai.client.models.entity.chunk import Chunk |
29 | | -from taskingai.client.models.entity.collection import Collection |
30 | | -from taskingai.client.models.entity.collection_config import CollectionConfig |
31 | | -from taskingai.client.models.entity.function import Function |
32 | | -from taskingai.client.models.entity.message import Message |
33 | | -from taskingai.client.models.entity.message_content import MessageContent |
34 | | -from taskingai.client.models.entity.message_role import MessageRole |
35 | | -from taskingai.client.models.entity.parameters_input import ParametersInput |
36 | | -from taskingai.client.models.entity.parameters_output import ParametersOutput |
37 | | -from taskingai.client.models.entity.record import Record |
38 | | -from taskingai.client.models.entity.text_embedding_output import TextEmbeddingOutput |
39 | | -from taskingai.client.models.entity.message_generation_response_option import MessageGenerationResponseOption |
| 13 | +from taskingai.client.models.entity.assistant.assistant import * |
| 14 | +from taskingai.client.models.entity.assistant.chat import * |
| 15 | +from taskingai.client.models.entity.assistant.message import * |
| 16 | +from taskingai.client.models.entity.tool.action import * |
| 17 | +from taskingai.client.models.entity.tool.function import * |
| 18 | +from taskingai.client.models.entity.retrieval.collection import * |
| 19 | +from taskingai.client.models.entity.retrieval.record import * |
| 20 | +from taskingai.client.models.entity.retrieval.chunk import * |
| 21 | +from taskingai.client.models.entity.inference.text_embedding import * |
| 22 | +from taskingai.client.models.entity.inference.chat_completion import * |
40 | 23 | from taskingai.client.models.rest.action_bulk_create_request import ActionBulkCreateRequest |
41 | 24 | from taskingai.client.models.rest.action_bulk_create_response import ActionBulkCreateResponse |
42 | 25 | from taskingai.client.models.rest.action_delete_response import ActionDeleteResponse |
|
0 commit comments