Files
AI-VideoAssistant/docs/content/getting-started/index.md
Xin Wang d0897aca92 Update documentation to reflect rebranding from AI Video Assistant to Realtime Agent Studio (RAS)
- Changed site name and description in mkdocs.yml.
- Revised content in index.md to provide a comprehensive overview of RAS features and capabilities.
- Updated API reference and error documentation to replace AI Video Assistant with RAS.
- Modified deployment and getting started guides to align with the new branding.
- Enhanced quickstart instructions to specify RAS service requirements.
2026-03-02 15:11:33 +08:00

1020 B
Raw Blame History

安装部署

本章节介绍如何安装和配置 Realtime Agent Studio (RAS) 开发环境。

概述

Realtime Agent Studio (RAS) 由以下组件构成:

组件 说明
Web 前端 React + TypeScript 构建的管理界面
API 服务 Python FastAPI 后端服务
Engine 服务 实时对话引擎WebSocket

安装步骤

1. 克隆项目

git clone https://github.com/your-repo/AI-VideoAssistant.git
cd AI-VideoAssistant

2. 安装依赖

cd web
npm install

3. 配置环境变量

创建 .env 文件,详见 配置说明

4. 启动开发服务器

npm run dev

访问 http://localhost:3000

构建生产版本

npm run build

构建产物在 dist 目录。

下一步