mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-09-19 00:01:33 +00:00
20 lines
435 B
Python
20 lines
435 B
Python
from reme_cli.component import BaseComponent
|
|
|
|
|
|
class Application(BaseComponent):
|
|
"""Application component for managing the main application."""
|
|
|
|
def __init__(self) -> None:
|
|
super().__init__()
|
|
...
|
|
|
|
async def start(self) -> None:
|
|
"""Start the application."""
|
|
# 初始化llm formater
|
|
#
|
|
pass
|
|
|
|
async def close(self) -> None:
|
|
"""Close the application."""
|
|
pass
|
|
|