Riceball LEE
Riceball LEE
## Refactor Backend with Abstract CustomBackend using AoP (Aspect Oriented Programming) and PropertyManager [WIP] - Not Yet Ready for Merge! **Description**: This pull request is part of our ongoing effort...
Refact the backend code to make it more modular and allow for easy plugin integration in the future
Currently, there are 3 backend components: chat, text-to-speech (TTS), speech-to-text (STT). Also, a storage backend is needed and the UI could be considered as a special fifth backend component too....
+ List Chat Sessions + New Chat Session + Use Chat Session + Delete Chat Session + Import/Export/Share Chat Session
## Character Card The [Character Card Specification](https://github.com/malfoyslastname/character-card-spec-v2/blob/main/spec_v2.md) provides guidelines for creating character. These character cards contain information about a specific character, including their name, description, personality, scenario, first message, and...
Dynaverse: 万物皆动,名称不错! 完全同意如今的所谓“元宇宙”概念只不过是把游戏的关卡(故事)设计放入到游戏世界中而已,想跳出去,穿越到另一个公司的游戏世界里,对不起,鄙公司才是正宗`元宇宙`,为了保护用户您的安全,老实待着。 但是对于 `Croquet` 我有不同的看法。不过,首先让我阐述自己关于`元宇宙`的一些想法。 在我眼里,`元宇宙`也许是下一代互联网的标志。如今的互联网打通了信息交互的通道,随着个人创作的盛行以及VR/AR的出现,进而才有了`metaverse`概念的出现。 不过如同最开始互联网`Web浏览器`的出现一样,从最简陋的文本Web浏览器(`lynx`),到图形界面的`Web浏览器`,再到有脚本交互多媒体`Web浏览器`。而这次则是`metaverse 浏览器`,其根本是协同创作展现不同虚拟世界,在不同的世界中自由创作与穿梭。 `Web浏览器`的网址是网页的地址,而`metaverse 浏览器`的网址则是各个虚拟世界的网络地址。 `Web浏览器`的超链接在`metaverse 浏览器`中则是虚拟世界里面的传送门。 而要打通不同的虚拟世界,在不同的虚拟世界之间进行穿梭,那么需要更多的关于世界(数据)的约定(规范): * 世界数据约定 World Data * 环境 Environment * 空气 Air(成份 component, 毒性 poisonous), 气压Air pressure, 温度Temperature,...
@mishig25 that's it for #794
There are two kinds of quantization in llama.cpp, don't confuse them: * GGMLQuantizationType(`ggml_type`): for tensor https://github.com/ggerganov/llama.cpp/blob/7a221b672e49dfae459b1af27210ba3f2b5419b6/ggml/include/ggml.h#L354 * The GGUF file quantization type(`general.file_type`): for file https://github.com/ggerganov/llama.cpp/blob/7a221b672e49dfae459b1af27210ba3f2b5419b6/include/llama.h#L131 If "general.file_type" is not configured,...
```js const expr = ce.parse(`\\begin{cases}x+y=70\\\\2x-4y=80\\end{cases}`); console.log(expr.latex); // \begin{cases}x+y=70&\top\\2x-4y=80&\top\end{cases} ``` Can a system of linear equations with multiple variables be simplified?
Inline python function to extend instruction: ```yaml - !fn |- [python] def add(a,b): return a+b - $add(1,2) ``` Import python functions from file: ```yaml --- import: "./my.py" --- - $add(1,2)...
Inline ruby function to extend instruction: ```yaml - !fn |- [ruby] def add(a,b) return a+b end - $add(1,2) ``` Import ruby functions from file: ```yaml --- import: "./my.rb" --- -...