Files
nuxt-claude/app/types/ai.ts
NEW_GIL_HOME\hyeon e66321386a
Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 25m52s
feat: nuxt-claude 프로젝트 초기 커밋
Made-with: Cursor
2026-03-08 16:36:13 +09:00

16 lines
264 B
TypeScript

export interface AiConversation {
id: string
user_id: string
title: string
created_at: string
updated_at: string
}
export interface AiMessage {
id: string
conversation_id: string
role: 'user' | 'assistant'
content: string
created_at: string
}