- Introduced a new chat endpoint for handling user messages and generating responses. - Added models for chat message requests and responses. - Implemented a conversation store to manage chat history. - Integrated memory layer for retrieving presentation context. - Created tools for accessing presentation outlines and searching slides. - Updated dependencies to include jsonschema for validation. - Enhanced the API router to include the new chat functionality.
6 lines
142 B
Python
6 lines
142 B
Python
from services.chat.service import ChatTurnResult, PresentationChatService
|
|
|
|
__all__ = [
|
|
"ChatTurnResult",
|
|
"PresentationChatService",
|
|
]
|