Hugh Lyu

Results 12 comments of Hugh Lyu

The value of app.baseURL does not apply to ~static, while router.base does. We were using ~static in img src attribute, e.g. . It works fine during local development, but when...

I am facing the exactly same issues when trying 'make' on macOS Big Sur. Basically following errors: 1. error: expected unqualified-id -- from MappedMemory.cpp 2. /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/c++/v1/iterator:562:13: error: unknown type name...

Right now I'm still busy building the infrastructure. Will be working on the specs including human_input_mode etc very soon.

> does this support handling user input when its set to always? @shaileshj2803 This is now supported. You can play with this template https://flowgen.app/gallery/4pbokrvi7zguv48, following the notes.

Also need to support `user_proxy.send()`. > Question: What is the difference between multi-call to `initiate_chat` and `send`.

https://github.com/microsoft/autogen/blob/main/notebook/agentchat_teachable_oai_assistants.ipynb

Adding following custom style in `global.css` can improve the situation a little bit: ```css .skeleton { @apply bg-base-content/10; } ```

@MentalGear I met similar issues before, later on I managed to work out by changing class from `collapse-arrow` to `collapse-plus`. Maybe you can have a try. Here is my working...

> 建议是采用方案 1 的方式在前端侧通过一个 uni 的包来处理跳转逻辑,因为入口不一样(一个是 js 一个是 html)。导航栏说的是 flutter 逻辑嘛? 第二点可以请 @andycall 看一下,openWebF 是不是可以提供用户自定义导航行为的抽象能力。 谢谢回复。你说的是否是 `@uni/navigate` 包?已经用上了,对应的代码如下: ```ts import { isKraken, isMiniApp, isWeb, isWeChatMiniProgram } from 'universal-env'; import navigate...

> 修改 History API 的方案我感觉并不好。更加符合标准的做法是给 kbc 文件添加一个 script 标签的类型,然后通过 script 标签来加载。 比如: > > ``` > > ``` > > 这样的 script 标签,浏览器并不会识别,也没有任何效果。然后 Kraken/WebF 可以进行识别(我看了下,KBC 文件的判断还没加上 ),然后加载。 > > 所以不要去尝试修改跳转的代码,这样只会让逻辑更加复杂,而且无法维护。...