Source code for app.domain.chat.schemas._chat
# SPDX-FileCopyrightText: 2026 Google LLC
# SPDX-License-Identifier: Apache-2.0
from app.lib.schema import CamelizedBaseStruct
[docs]
class ChatMessage(CamelizedBaseStruct, omit_defaults=True):
"""Individual chat message."""
message: str
source: str # 'human' | 'ai' | 'system'