2023-11-30 21:04:19 -08:00
|
|
|
|
|
|
|
|
from .proto.agent_msg import *
|
|
|
|
|
from .proto.compute_task import *
|
2023-12-06 13:31:05 -08:00
|
|
|
from .proto.ai_function import *
|
|
|
|
|
from .proto.agent_task import *
|
2023-11-30 21:04:19 -08:00
|
|
|
|
2023-12-06 13:31:05 -08:00
|
|
|
from .agent.agent_base import *
|
2023-11-30 21:04:19 -08:00
|
|
|
from .agent.chatsession import AIChatSession
|
|
|
|
|
from .agent.agent import AIAgent,AIAgentTemplete, BaseAIAgent
|
|
|
|
|
from .agent.role import AIRole,AIRoleGroup
|
2023-12-06 13:31:05 -08:00
|
|
|
from .agent.workflow import Workflow
|
2023-12-17 18:23:40 -08:00
|
|
|
from .agent.agent_memory import AgentMemory
|
|
|
|
|
from .agent.llm_context import LLMProcessContext,GlobaToolsLibrary,SimpleLLMContext
|
2023-11-30 21:04:19 -08:00
|
|
|
|
|
|
|
|
from .frame.compute_kernel import ComputeKernel,ComputeTask,ComputeTaskResult,ComputeTaskState,ComputeTaskType
|
|
|
|
|
from .frame.compute_node import ComputeNode,LocalComputeNode
|
|
|
|
|
from .frame.bus import AIBus
|
|
|
|
|
from .frame.tunnel import AgentTunnel
|
|
|
|
|
from .frame.contact_manager import ContactManager,Contact,FamilyMember
|
|
|
|
|
from .frame.queue_compute_node import Queue_ComputeNode
|
|
|
|
|
|
2023-12-04 17:15:09 +08:00
|
|
|
from .environment.environment import BaseEnvironment,SimpleEnvironment,CompositeEnvironment
|
2023-12-05 18:50:32 +08:00
|
|
|
# from .environment.workflow_env import WorkflowEnvironment,CalenderEnvironment,CalenderEvent,PaintEnvironment
|
2023-12-17 18:23:40 -08:00
|
|
|
from .ai_functions.text_to_speech_function import TextToSpeechFunction
|
|
|
|
|
from .ai_functions.image_2_text_function import Image2TextFunction
|
2023-12-06 13:31:05 -08:00
|
|
|
from .environment.workspace_env import WorkspaceEnvironment
|
2023-11-30 21:04:19 -08:00
|
|
|
|
|
|
|
|
from .storage.storage import ResourceLocation,AIStorage,UserConfig,UserConfigItem
|
|
|
|
|
|
|
|
|
|
from .net import *
|
|
|
|
|
from .knowledge import *
|
|
|
|
|
from .package_manager import *
|
2023-12-02 22:02:07 +08:00
|
|
|
from .utils import *
|
2023-11-30 21:04:19 -08:00
|
|
|
|
|
|
|
|
|
2023-12-17 18:23:40 -08:00
|
|
|
AIOS_Version = "0.5.2, build 2023-12-15"
|