Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
98a659f
fix: ai plugin text and ui and upgrade robot version
hexqi Sep 25, 2025
5eb53e9
feat(robot): code refactor
hexqi Sep 28, 2025
7c4a1c9
fix: update ui
hexqi Sep 29, 2025
7f3d235
feat: use axios
hexqi Sep 30, 2025
2420b10
feat: basic ability and agent mode
hexqi Oct 14, 2025
fa10596
fix: invalid icon
hexqi Oct 14, 2025
b8746a2
feat: update prompt
hexqi Oct 17, 2025
8005437
feat: update prompt
hexqi Oct 20, 2025
d2ed82f
feat: chatMode and switchConversation
hexqi Oct 21, 2025
0d7ca22
feat: update system prompt and model list
hexqi Oct 28, 2025
e9fb7d8
refactor: file refactor and update prompt
hexqi Oct 31, 2025
c3991d9
fix: review and error
hexqi Nov 3, 2025
59d1acf
feat: add assets in prompts
hexqi Nov 3, 2025
ce65137
feat: add options
hexqi Nov 5, 2025
2bcbd32
chore: optimize plugin code directory structure
hexqi Nov 5, 2025
eee31c8
feat: add ai autofix jsonschema & methods autofix
hexqi Nov 7, 2025
2e06be5
feat: check apikey
hexqi Nov 10, 2025
d45a4d3
feat: auto close setting panel when open robot plugin
hexqi Nov 26, 2025
5af9c9f
feat: use inner material components
hexqi Nov 26, 2025
5e1d0c3
feat: add chat mode icons to history list
hexqi Nov 26, 2025
a2c8780
refactor: extract history component and optimize chat component struc…
hexqi Nov 26, 2025
db20f25
feat: refactor robot plugin architecture and add mode-specific implem…
hexqi Nov 27, 2025
1e7b1ac
feat: refactor robot settings UI from popover to side panel
hexqi Dec 1, 2025
39417f0
feat: add API key encryption support and auto-save robot settings
hexqi Dec 1, 2025
a4496f4
feat: add model capabilities tags and filterable select in robot sett…
hexqi Dec 1, 2025
299a48c
feat: refactor error handling in chat message sending and HTTP requests
hexqi Dec 1, 2025
2bc03bc
docs: update AI plugin documentation with comprehensive guide for new…
hexqi Dec 2, 2025
55f90c3
Merge remote-tracking branch 'gh/develop' into feat/ai-plugin-refactor
hexqi Dec 2, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions designer-demo/public/mock/bundle.json
Original file line number Diff line number Diff line change
Expand Up @@ -21269,7 +21269,7 @@
"zh_CN": "表单"
},
"screenshot": "",
"snippetName": "tiny-form",
"snippetName": "TinyForm",
"icon": "form",
"schema": {
"componentName": "TinyForm",
Expand Down Expand Up @@ -21709,7 +21709,7 @@
},
"icon": "grid",
"screenshot": "",
"snippetName": "tinyGrid",
"snippetName": "TinyGrid",
"schema": {
"componentName": "TinyGrid",
"props": {
Expand Down Expand Up @@ -21791,7 +21791,7 @@
"zh_CN": "走马灯"
},
"screenshot": "",
"snippetName": "tiny-carousel",
"snippetName": "TinyCarousel",
"icon": "carousel",
"schema": {
"componentName": "TinyCarousel",
Expand Down
1 change: 1 addition & 0 deletions designer-demo/src/composable/http/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const procession = {
let loginVM = null

const showError = (url, message) => {
if (message === 'canceled') return // 取消请求场景不报错
globalNotify({
type: 'error',
title: '接口报错',
Expand Down
Loading