WuQic

Results 8 comments of WuQic

Okay, I see, I want to implement a multitasking flow of tool function calls, how can I do it, I want to complete a workflow by LLM automatically identifying what...

Ok, thank you very much, I'll take a look at the example first

I'm also having the same issue Is there a solution, here's the error stack ```sh Add command: ClientHandshake raw: 0a352e372e393900c61c00005e4c604e6f57626e0008822100000800150000000000000000000052535f4a5c4a636f5d5f5f4b006d7973716c5f6e61746976655f70617373776f726400 Trace at Connection.handlePacket (/workspaces/sugo-cold-chain-link/server/node_modules/mysql2/lib/connection.js:433:17) at PacketParser.onPacket (/workspaces/sugo-cold-chain-link/server/node_modules/mysql2/lib/connection.js:97:12) at PacketParser.executeStart (/workspaces/sugo-cold-chain-link/server/node_modules/mysql2/lib/packet_parser.js:75:16)...

Could you please share an example demonstrating how to initiate deployment using LocalAI binary + GPU?

I solved it with the latest version: ```sh # create dir mkdir /opt/apps/local-ai /opt/apps/local-ai/models /opt/apps/local-ai/configuration cd /opt/apps/local-ai # Download CUDA 12 wget https://github.com/mudler/LocalAI/releases/download/v2.15.0/local-ai-cuda12-Linux-x86_64 # chmod chmod +x local-ai-cuda12-Linux-x86_64 # run...

When will llama3 and OpenAI API-compatible function callng or tool calling be supported?

> 这个问题主要要解决两个问题: 1.重新编译tailwind添加到head中; 2.处理antd的reset.css问题; > > 一、重新编译tailwind添加到head中 1.安装tailwindcss,@tailwindcss/postcss 2.在umric中添加postcss配置extraPostCSSPlugins: [require("@tailwindcss/postcss")] 3.删掉umrc中的tailwindcss配置 4.这时候tailwind编译的结果还没添加到html的head中,在src目录下添加global.css,在里面添加[@import](https://github.com/import) "tailwindcss"; umjs会讲global.css注入到head里。 > > 二、处理antd的reset.css问题; tailwind4使用[@layer](https://github.com/layer) base,而antd的reset.css不使用[@layer](https://github.com/layer),导致reset.css的优先级更高,这时候tailwind是不起作用的。解决方案如下 1.在项目下新建antd-reset-layer.css文件 2.copy文件antd/dist/reset.css下的所有代码到antd-reset-layer.css,并添加[@layer](https://github.com/layer) 在文件开始,格式如下 [@layer](https://github.com/layer) base { .... } 3.在umrc中添加配置 alias: {...

```js import fs from 'fs' import path from 'path' /** * Monaco Editor 0.52.0 + Wujie 最终补丁方案 * * 问题根源: * Monaco的_actualDoHitTestWithCaretRangeFromPoint函数内部有Wujie特殊处理, * 但这个处理有bug - 备用函数f在Wujie环境下返回的Range对象不正确。 * * 解决方案: *...