fix:调整目录结构,优化hfc prompt,移除日程,移除动态和llm判断willing模式,

This commit is contained in:
SengokuCola
2025-05-13 18:37:55 +08:00
parent 6376da0682
commit fed71bccad
131 changed files with 422 additions and 1500 deletions

View File

@@ -0,0 +1,10 @@
"""Maim Message - A message handling library"""
__version__ = "0.1.0"
from .api import global_api
__all__ = [
"global_api",
]

View File

@@ -0,0 +1,6 @@
from src.common.server import global_server
import os
from maim_message import MessageServer
global_api = MessageServer(host=os.environ["HOST"], port=int(os.environ["PORT"]), app=global_server.get_app())