mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-17 23:51:19 +00:00
13 lines
357 B
Python
13 lines
357 B
Python
"""Enumeration module for ReMe.
|
|
|
|
This module provides enumerations used throughout the ReMe system,
|
|
including language enumerations and other type definitions.
|
|
"""
|
|
|
|
from reme_ai.enumeration.working_summary_mode import WorkingSummaryMode
|
|
from reme_ai.enumeration.language_enum import LanguageEnum
|
|
|
|
__all__ = [
|
|
"WorkingSummaryMode",
|
|
"LanguageEnum",
|
|
]
|