CalciumIon
89136dfa9e
feat: Add filtering and search functionality to model selection in EditChannel and EditTagModal
...
- Implemented filter and search position options in the model selection dropdowns for both EditChannel and EditTagModal components.
- Enhanced user experience by allowing users to easily find and select models from a potentially large list.
2024-12-11 21:33:30 +08:00
CalciumIon
5f0322b672
feat: Add custom model input functionality in EditTagModal
...
- Introduced a new input field for adding custom model names in the EditTagModal component.
- Implemented logic to handle the addition of custom models, including validation to prevent duplicates.
- Enhanced user experience by providing feedback when attempting to add existing models.
- Updated state management to reflect changes in the model options dynamically.
2024-12-11 21:31:29 +08:00
CalciumIon
379b08f691
feat: Update user group handling in Playground component
...
- Enhanced the Playground component to prioritize the user's group by moving it to the front of the local group options if it exists.
- Improved user experience by ensuring the default group selection reflects the user's current group, if available.
2024-12-11 21:25:50 +08:00
CalciumIon
7cab9d7c8a
feat: Update dependencies and restructure Playground component
...
- Upgraded @douyinfe/semi-ui from version 2.63.1 to 2.69.1 in package.json.
- Updated pnpm-lock.yaml to reflect new dependency versions and lockfile format.
- Moved Playground component to a new directory structure under pages.
- Enhanced Playground component with new features and improved user experience.
2024-12-11 18:27:30 +08:00
CalciumIon
713de36ecd
feat: Enhance EditRedemption component with default name handling
2024-12-11 17:28:59 +08:00
CalciumIon
64e085dc4c
feat: 首页优化
2024-12-11 17:19:03 +08:00
CalciumIon
5d1087a6a9
fix: 编辑标签文字错误
2024-12-09 23:45:12 +08:00
CalciumIon
cf8b30edfa
fix: edit channel weight and priority
2024-12-09 21:26:17 +08:00
iszcz
89cd0db28c
Update EditTagModal.js
2024-12-01 22:36:51 +08:00
Calcium-Ion
48abfd055c
Merge pull request #574 from Calcium-Ion/channel-tag
...
feat: 初步集成渠道标签分组功能
2024-11-30 17:45:16 +08:00
CalciumIon
6693072c49
feat: 完善标签编辑(优先级,权重)
2024-11-30 17:43:03 +08:00
CalciumIon
3053d94170
feat: 完善标签编辑
2024-11-30 16:57:58 +08:00
CalciumIon
9c4d30602c
feat: 完善标签编辑
2024-11-29 23:58:31 +08:00
Calcium-Ion
462c2cc1a1
Merge pull request #493 from xixingya/feature/bug-fix
...
ratio must gte 0
2024-11-19 18:34:24 +08:00
CalciumIon
6e6e390f6f
feat: 一键编辑标签下渠道重定向
2024-11-19 01:43:05 +08:00
CalciumIon
0ce600ed49
feat: 渠道标签分组
2024-11-19 01:13:18 +08:00
licoy
cdc02f660b
feat: 优化switch组件的大小规格与整体表单一致
2024-11-12 16:32:40 +08:00
licoy
674abe5ae2
feat: 统一运营设置页面的保存按钮大小规格
2024-11-12 16:30:51 +08:00
seefs001
046f859d92
feat: integrate Linux DO OAuth authentication
2024-11-10 23:56:22 +08:00
CalciumIon
3e2ae29ba0
fix: 修复聊天环境变量替换不完全 ( close #542 )
2024-11-05 16:02:10 +08:00
1808837298@qq.com
f599c65944
fix: 修复用户可选分组不能选择用户分组 ( close #528 )
2024-10-14 16:22:22 +08:00
1808837298@qq.com
d6359ec4ff
feat: 完善自定义聊天配置
2024-10-12 21:09:59 +08:00
1808837298@qq.com
89ddf83b44
feat: 弃用旧的聊天配置
2024-10-12 21:09:59 +08:00
GuoRuqiang
574d7a0914
使用postMessage向iframe传参theme-mode,实现切换子页面主题的功能
...
子页面的js示例
```
<script>
// 接收父页面的主题模式
window.addEventListener('message', function(event) {
if (event.data.themeMode) {
var theme = event.data.themeMode;
// 测试是否正确接受到theme-mode的值
// console.log('Received theme mode from parent:', theme);
applyTheme(theme);
}
});
// 定义一个函数来应用主题
function applyTheme(theme) {
var body = document.body;
if (theme === 'dark') {
body.classList.add("dark-mode");
document.getElementById("darkModeToggle").checked = true;
} else {
body.classList.remove("dark-mode");
document.getElementById("darkModeToggle").checked = false;
}
}
</script>
```
2024-09-22 14:09:03 +00:00
liuzhifei
3d33079de0
ratio must gte 0
2024-09-20 18:27:16 +08:00
liuzhifei
1d064a2e88
ratio must gte 0
2024-09-20 18:09:40 +08:00
CalciumIon
c6ff785a83
feat: 无可选分组时关闭令牌分组功能 #485
2024-09-19 03:01:33 +08:00
CalciumIon
2e734e0c37
chore: 令牌分组描述歧义
2024-09-19 02:52:25 +08:00
CalciumIon
052bc2075b
feat: 令牌分组
2024-09-18 05:19:49 +08:00
CalciumIon
ed948c121a
Merge branch 'main' into g-main
...
# Conflicts:
# web/src/App.js
2024-09-17 22:50:59 +08:00
CalciumIon
f505afdc10
feat: 添加令牌ip白名单功能
2024-09-17 20:49:51 +08:00
GuoRuqiang
ecf2f7f212
Merge branch 'Calcium-Ion:main' into main
2024-08-28 21:44:54 +08:00
CalciumIon
e60f200192
feat: 支持vertex ai渠道多个部署地区
2024-08-28 18:43:40 +08:00
GuoRuqiang
033359e93c
Merge branch 'Calcium-Ion:main' into main
2024-08-28 10:44:14 +08:00
CalciumIon
ac4262c542
feat: support vertex ai #377
2024-08-27 20:19:51 +08:00
GuoRuqiang
27eb358497
重新修改了chat
2024-08-17 16:17:24 +00:00
GuoRuqiang
6810ee0a28
Update Chat
...
修改chat界面,配合nextChat等前端可以自动传入第一个已启用令牌,
2024-08-17 23:09:45 +08:00
CalciumIon
07e55cc999
chore: update token page
2024-07-28 00:05:53 +08:00
CalciumIon
7b36a2b885
feat: support cloudflare worker ai
2024-07-13 19:55:22 +08:00
CalciumIon
03b130f2b5
feat: 允许设置是否检测mj任务已完成才可进行action操作 ( close #349 )
2024-07-08 16:48:10 +08:00
Calcium-Ion
1e2c1ee950
Merge pull request #310 from Calcium-Ion/feat/suno-api
...
Feat/suno api
2024-06-21 14:59:59 +08:00
Xiangyuan Liu
c993ab2746
feat: suno api 支持
...
feat: 调试 suno
feat: 补充suno 文档
2024-06-13 10:35:48 +08:00
akl7777777
6f1bef66a7
fix: Available models could not be populated when adding a new channel
2024-06-04 20:39:28 +08:00
1808837298@qq.com
1291504fdc
修改版权信息
2024-05-24 21:27:13 +08:00
1808837298@qq.com
fa902cca4c
feat: 添加自定义渠道提示
2024-05-24 16:25:40 +08:00
1808837298@qq.com
0c8696816d
feat: 添加自定义渠道提示
2024-05-24 16:25:11 +08:00
1808837298@qq.com
36fac2baa2
feat: 增加重置模型倍率功能 ( close #62 )
2024-05-24 15:28:16 +08:00
1808837298@qq.com
0867d36fc7
feat: 完善获取模型列表功能 (close #237 )
2024-05-23 19:50:37 +08:00
bubu
6aa1f2fcbe
合并上游、支持已有渠道获取模型
2024-05-21 22:21:25 +08:00
bubu
e2663a5c66
添加同步上游模型列表按钮:添加提示以及支持已有渠道获取
2024-05-21 22:16:20 +08:00