Nested Conversation Support (#8588)

Co-authored-by: openhands <openhands@all-hands.dev>
Co-authored-by: Robert Brennan <contact@rbren.io>
This commit is contained in:
tofarr
2025-05-21 15:17:30 -06:00
committed by GitHub
parent 70573dcbc0
commit a3d1a92353
20 changed files with 842 additions and 208 deletions

View File

@@ -17,6 +17,7 @@ from openhands.server.routes.conversation import app as conversation_api_router
from openhands.server.routes.feedback import app as feedback_api_router
from openhands.server.routes.files import app as files_api_router
from openhands.server.routes.git import app as git_api_router
from openhands.server.routes.health import add_health_endpoints
from openhands.server.routes.manage_conversations import (
app as manage_conversation_api_router,
)
@@ -44,11 +45,6 @@ app = FastAPI(
)
@app.get('/health')
async def health() -> str:
return 'OK'
app.include_router(public_api_router)
app.include_router(files_api_router)
app.include_router(security_api_router)
@@ -59,3 +55,4 @@ app.include_router(settings_router)
app.include_router(secrets_router)
app.include_router(git_api_router)
app.include_router(trajectory_router)
add_health_endpoints(app)