mirror of
https://github.com/agentuniverse-ai/agentUniverse.git
synced 2026-02-09 01:59:19 +08:00
20 lines
679 B
Python
20 lines
679 B
Python
# !/usr/bin/env python3
|
|
# -*- coding:utf-8 -*-
|
|
|
|
# @Time : 2024/10/17 11:55
|
|
# @Author : wangchongshi
|
|
# @Email : wangchongshi.wcs@antgroup.com
|
|
# @FileName: work_pattern_manager.py
|
|
from agentuniverse.agent.work_pattern.work_pattern import WorkPattern
|
|
from agentuniverse.base.annotation.singleton import singleton
|
|
from agentuniverse.base.component.component_enum import ComponentEnum
|
|
from agentuniverse.base.component.component_manager_base import ComponentManagerBase
|
|
|
|
|
|
@singleton
|
|
class WorkPatternManager(ComponentManagerBase[WorkPattern]):
|
|
"""A singleton manager class of the WorkPattern."""
|
|
|
|
def __init__(self):
|
|
super().__init__(ComponentEnum.WORK_PATTERN)
|