(
app_name: str,
user_id: str,
session_id: str,
state: Optional[dict[str, Any]] = None,
)
| 1123 | response_model_exclude_none=True, |
| 1124 | ) |
| 1125 | async def create_session_with_id( |
| 1126 | app_name: str, |
| 1127 | user_id: str, |
| 1128 | session_id: str, |
| 1129 | state: Optional[dict[str, Any]] = None, |
| 1130 | ) -> Session: |
| 1131 | return await self._create_session( |
| 1132 | app_name=app_name, |
| 1133 | user_id=user_id, |
| 1134 | state=state, |
| 1135 | session_id=session_id, |
| 1136 | ) |
| 1137 | |
| 1138 | @app.post( |
| 1139 | "/apps/{app_name}/users/{user_id}/sessions", |
nothing calls this directly
no test coverage detected