LeePui

Results 10 comments of LeePui

i found it can't be enhanced class since 1.27.0

Hi, @SylvainJuge , sorry, it took so long to reply. My application uses spring mvc. But we use two agent, the other agent is written by us and is used...

> You problem might also be resolved by upgrading the elastic-agent to at least `1.34.0`. This version contains a change (#2728) which should isolate the elastic agent from any dependencies...

Hi , i think supporting simple object types would be **very useful for Dify**. Dify likely serves a substantial number of commercial clients, predominantly enterprise-level users. One common application for...

> Hi , i think supporting simple object types would be **very useful for Dify**. > > Dify likely serves a substantial number of commercial clients, predominantly enterprise-level users. One...

> Thanks for your contribution, and I consider it as an important feature that implements lots of amazing and useful tools. > > However, supporting OBJECT type is complex work,...

> Hi @LeePui did that resolve the issue? yes, thanks.

> ![image](https://user-images.githubusercontent.com/35405705/110310433-82c15200-803d-11eb-9e9c-fb9e877b77e7.png) > ![image](https://user-images.githubusercontent.com/35405705/110311103-4c380700-803e-11eb-8492-18798ffc083d.png) > 由于nacos-spring-boot的配置项是固定的,你必须修改源码才能使用nacos.executorService.threadCount=2控制; > 或者可以使用 System.setProperty("nacos.executorService.threadCoun", "2"); 多谢

Close. because there are very few supported models, such as llama3, which is not supported. I will try another way to support tool calls

老哥,看你的状态描述和我的有点类似。我想咨询个问题,你上面说的: > 比如场景 正向状态,待审核->业务审核通过->商务审核通过->法务审核通过 反向状态,待审核->业务审核驳回 待审核->业务审核通过->商务审核驳回 待审核->业务审核通过->商务审核通过->法务审核驳回 事件是审核通过、审核拒绝 在这个场景中通过待审核初始状态+审核通过事件,能够走到正向链路的最后,这条链路可能是需要展示出去的 - 你这里只有两个事件:`审核通过`, `审核拒绝`。按理说是不是还应该有一个`开始审核`事件,开始审核后,对象状态为`审核中`,然后经过审核,状态有可能变为:`审核通过`/`审核拒绝`。 - 假设是这样的话,那么结合COLA状态机,要怎么设计这个流程的代码呢? - 假设审核是一个接口方法: ``` // 对xxx文件进行审核的业务逻辑 booleab examine(xxx) { // 文件进入审核中状态 // 开始审核 if 某某条件: 审核通过:修改数据库文件状态,打印日志,发送文件审核通过消息 触发stateMachine.fireEvent(审核通过)...