(feat) Add button to export trajectory on chat panel (#6378)

This commit is contained in:
Boxuan Li
2025-01-21 06:10:00 -08:00
committed by GitHub
parent 210eeee94a
commit b7f34c3f8d
11 changed files with 184 additions and 0 deletions

View File

@@ -27,6 +27,7 @@ from openhands.server.routes.manage_conversations import (
from openhands.server.routes.public import app as public_api_router
from openhands.server.routes.security import app as security_api_router
from openhands.server.routes.settings import app as settings_router
from openhands.server.routes.trajectory import app as trajectory_router
from openhands.server.shared import openhands_config, session_manager
from openhands.utils.import_utils import get_impl
@@ -69,6 +70,7 @@ app.include_router(conversation_api_router)
app.include_router(manage_conversation_api_router)
app.include_router(settings_router)
app.include_router(github_api_router)
app.include_router(trajectory_router)
AttachConversationMiddlewareImpl = get_impl(
AttachConversationMiddleware, openhands_config.attach_conversation_middleware_path