Refactor the code to make it comply with PEP-8 standards:Convert all class definitions to CamelCase style.

(issue 37)
This commit is contained in:
Liu Zhicong
2023-08-23 11:19:16 -07:00
parent 23963adc6e
commit 5454009e7b
21 changed files with 601 additions and 603 deletions
+7 -7
View File
@@ -1,7 +1,7 @@
from .environment import environment,environment_event
from .agent import agent_msg,ai_agent,ai_agent_templete
from .compute_kernel import compute_kernel,compute_task
from .compute_node import compute_node,local_compute_node
from .open_ai_node import open_ai_compute_node
from .role import ai_role,ai_role_group
from .workflow import ai_workflow
from .environment import Environment,EnvironmentEvent
from .agent import AgentMsg,AIAgent,AIAgentTemplete
from .compute_kernel import ComputeKernel,ComputeTask
from .compute_node import ComputeNode,LocalComputeNode
from .open_ai_node import OpenAI_ComputeNode
from .role import AIRole,AIRoleGroup
from .workflow import Workflow