fix(openapi): OpenAPI schema validation UNEVALUATED PROPERTY must NOT have unevaluated properties

This commit is contained in:
ahmedrowaihi 2025-03-08 16:53:30 +03:00
parent 8cb344ca8c
commit 23c756b55d
4 changed files with 3 additions and 10 deletions

View File

@ -28,7 +28,6 @@ services:
- "8083:8083"
- "8283:8283"
environment:
- SERPAPI_API_KEY=${SERPAPI_API_KEY}
- LETTA_PG_DB=${LETTA_PG_DB:-letta}
- LETTA_PG_USER=${LETTA_PG_USER:-letta}
- LETTA_PG_PASSWORD=${LETTA_PG_PASSWORD:-letta}

View File

@ -30,9 +30,7 @@ logger = get_logger(__name__)
responses={
200: {
"description": "Successful response",
"content": {
"text/event-stream": {"description": "Server-Sent Events stream"},
},
"content": {"text/event-stream": {}},
}
},
)

View File

@ -669,9 +669,7 @@ async def send_message(
responses={
200: {
"description": "Successful response",
"content": {
"text/event-stream": {"description": "Server-Sent Events stream"},
},
"content": {"text/event-stream": {}},
}
},
)

View File

@ -26,9 +26,7 @@ logger = get_logger(__name__)
responses={
200: {
"description": "Successful response",
"content": {
"text/event-stream": {"description": "Server-Sent Events stream"},
},
"content": {"text/event-stream": {}},
}
},
)