Phase 1 complete

This commit is contained in:
GW_MC
2026-02-24 10:34:55 +00:00
parent 630b60d7e2
commit 8714d6bd22
112 changed files with 11063 additions and 73 deletions

View File

@@ -0,0 +1,23 @@
/**
* Generated by orval v8.4.2 🍺
* Do not edit manually.
* DreamChat API
* The DreamChat API documentation
* OpenAPI spec version: 1.0.0
*/
import type { MessageResponseDtoRole } from './messageResponseDtoRole';
export interface MessageResponseDto {
/** Message ID */
id: string;
/** Message role */
role: MessageResponseDtoRole;
/** Message content */
content: string;
/** Tokens used */
tokensUsed?: number;
/** Model used */
model?: string;
/** Creation date */
createdAt: string;
}