Phase 1 complete
This commit is contained in:
23
apps/frontend/src/api/generated/model/messageResponseDto.ts
Normal file
23
apps/frontend/src/api/generated/model/messageResponseDto.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user