feat(agent-chat): complete core workflow and strengthen auth rate limiting

This commit is contained in:
qzl
2026-02-25 16:51:12 +08:00
parent 53c72e48e6
commit cd40b2b4f4
62 changed files with 3441 additions and 3 deletions
+7 -1
View File
@@ -17,7 +17,13 @@ if str(src_path) not in sys.path:
from core.config.settings import config # noqa: E402
from core.db.base import Base # noqa: E402
from models import Profile # noqa: F401,E402
from models import ( # noqa: F401,E402
AgentChatMessage,
AgentChatSession,
Llm,
LlmFactory,
Profile,
)
if TYPE_CHECKING:
from sqlalchemy.engine import Connection