feat: 调用大模型

This commit is contained in:
zhanghao 2025-09-03 09:16:13 +08:00
parent 97dd210294
commit 13a104a133
5 changed files with 1178 additions and 1176 deletions

View File

@ -264,7 +264,9 @@ export const collapseList = [
desc: "用于获取触控坐标的节点",
action: 'TOUCH_COORDINATES',
nodeParams: [
{ name: "words", type: "input", input: "", disabled: true }
{ name: "targetFeature", type: "input", input: "运动模式", disabled: true },
{ name: "manufacturer", type: "input", input: "xiaomi", disabled: true },
{ name: "vehType", type: "input", input: "su7", disabled: true },
],
outputType: 'json',
outputParams: [{ name: 'coordinates', type: 'Object', desc: '坐标对象'}]

View File

@ -32,11 +32,11 @@ export default defineConfig(({mode, command}) => {
proxy: {
// https://cn.vitejs.dev/config/#server-proxy
'/dev-api': {
//杨 http://10.148.108.95:13080
//杨 http://192.168.1.10:13080
//赵 http://10.148.108.58:13080
// dev http://10.148.20.34:13080
// target: command === 'build' ? VITE_API_URL : 'http://10.148.20.34:13080',
target: command === 'build' ? VITE_API_URL : 'http://10.148.108.95:13080',
target: command === 'build' ? VITE_API_URL : 'http://192.168.1.10:13080',
changeOrigin: true,
rewrite: (p) => p.replace(/^\/dev-api/, '')
}