MCPcopy Create free account
hub / github.com/TheSmallHanCat/flow2api / ChatMessage

Class ChatMessage

src/core/models.py:238–242  ·  view source on GitHub ↗

Chat message

Source from the content-addressed store, hash-verified

236
237# OpenAI Compatible Request Models
238class ChatMessage(BaseModel):
239 """Chat message"""
240
241 role: str
242 content: Union[str, List[dict]] # string or multimodal array
243
244
245class ImageConfig(BaseModel):

Calls

no outgoing calls