hotfix: fix sdk version
This commit is contained in:
parent
6ec1ca54e1
commit
7a5ca7bc0e
1
.gitignore
vendored
1
.gitignore
vendored
@ -26,3 +26,4 @@ yarn-error.log*
|
||||
/Server/node_modules
|
||||
/Server/log
|
||||
/log
|
||||
yarn.lock
|
||||
@ -65,6 +65,12 @@ yarn dev
|
||||
参考 [OpenAPI 更新](https://www.volcengine.com/docs/6348/116363?s=g) 中与 实时对话式 AI 相关的更新内容。
|
||||
|
||||
### Demo 更新
|
||||
|
||||
#### [1.6.0] - [2025-05-22]
|
||||
- 更新 RTC Web SDK 版本至 4.66.13
|
||||
- 删除无用依赖
|
||||
- 更新 Readme 文档
|
||||
|
||||
#### [1.6.0] - [2025-04-16]
|
||||
- 支持 Coze Bot
|
||||
- 更新部分注释和文档内容
|
||||
|
||||
@ -5,11 +5,10 @@
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@reduxjs/toolkit": "^1.8.3",
|
||||
"@volcengine/rtc": "4.66.1",
|
||||
"@volcengine/rtc": "~4.66.13",
|
||||
"@arco-design/web-react": "^2.65.0",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-helmet": "^6.1.0",
|
||||
"react-redux": "^8.0.2",
|
||||
"react-router": "^6.3.0",
|
||||
"react-router-dom": "^6.3.0",
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<meta name="description" content="volc video demo" />
|
||||
|
||||
<link rel="icon" href="/favicon.png" />
|
||||
<!--
|
||||
Notice the use of %PUBLIC_URL% in the tags above.
|
||||
It will be replaced with the URL of the `public` folder during the build.
|
||||
|
||||
@ -2,8 +2,6 @@
|
||||
* Copyright 2025 Beijing Volcano Engine Technology Co., Ltd. All Rights Reserved.
|
||||
* SPDX-license-identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
import { Helmet } from 'react-helmet';
|
||||
import { BrowserRouter, Routes, Route } from 'react-router-dom';
|
||||
import MainPage from './pages/MainPage';
|
||||
import '@arco-design/web-react/dist/css/arco.css';
|
||||
@ -12,9 +10,6 @@ function App() {
|
||||
console.warn('运行问题可参考 README 内容进行排查');
|
||||
return (
|
||||
<BrowserRouter>
|
||||
<Helmet>
|
||||
<link rel="icon" href="/favicon.png" />
|
||||
</Helmet>
|
||||
<Routes>
|
||||
<Route path="/">
|
||||
<Route index element={<MainPage />} />
|
||||
|
||||
@ -63,6 +63,9 @@ export class ConfigFactory {
|
||||
/**
|
||||
* @brief 已开通需要的语音合成服务的token。
|
||||
* 使用火山引擎双向流式语音合成服务时 必填。
|
||||
*
|
||||
* @note 注意! 如您使用的是双向流式语音合成服务, 务必修改 `src/config/common.ts` 中的 VOICE_TYPE enum,将默认的 通用女声、通用男声 替换为您已开通的大模型音色。
|
||||
* 否则可能出现无法使用的情况。
|
||||
*/
|
||||
TTSToken: undefined,
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user