Browse Source

feat: 集成coze

dev-zw
zhaowei 5 months ago
parent
commit
a8a52eb83a
2 changed files with 21 additions and 0 deletions
  1. +12
    -0
      react-ui/config/routes.ts
  2. +9
    -0
      react-ui/src/pages/Coze/index.tsx

+ 12
- 0
react-ui/config/routes.ts View File

@@ -607,6 +607,18 @@ export default [
},
],
},
{
name: 'coze',
path: '/coze',
routes: [
{
name: '智能体编排',
path: '',
key: 'coze',
component: './Coze/index',
},
],
},
{
name: 'mixed',
path: '/mixed',


+ 9
- 0
react-ui/src/pages/Coze/index.tsx View File

@@ -0,0 +1,9 @@
import IframePage from '@/components/IFramePage';

function Coze() {
return (
<IframePage url="http://36.103.199.102:18010/space/7542403354794655744/develop"></IframePage>
);
}

export default Coze;

Loading…
Cancel
Save