初始提交:CodingRoom 机器人与 AI 平台

This commit is contained in:
yczpf2019
2026-01-28 00:19:52 +08:00
commit 2af1b4ffe7
13 changed files with 618 additions and 0 deletions

12
types.ts Normal file
View File

@@ -0,0 +1,12 @@
import React from 'react';
export interface Message {
role: 'user' | 'model';
text: string;
}
export interface Service {
title: string;
description: string;
icon: React.ReactNode;
}