Kevin Zhang

Results 20 issues of Kevin Zhang

Since chrome have feature [sidePanel](https://developer.chrome.com/docs/extensions/reference/api/sidePanel?hl=en), I think it is necessary to add this types.

### Description of the bug: Unexpected type of call %s" % type(call) when do async chat call `send_message_async`. I use the `rest` as transport, use my own proxy api endpoint....

type:bug
component:python sdk

https://github.com/RVC-Boss/GPT-SoVITS/blob/35e755427da174037da246642cab6987876c74fa/GPT_SoVITS/TTS_infer_pack/TTS.py#L279 条件:用户A调用了`set_sovits_weights`设置了model a,然后还没有调用api进行推理的时候,用户B同时也调用了`set_sovits_weights`设置了model b。 问题:这时用户A和用户B同时调用推理api,请问这时用户A和用户B是否是使用用户B设置过的model b?这个是否可以改进?如何能够让多用户调用不同的model weights时不被别人覆盖?

In follow-up

https://github.com/RVC-Boss/GPT-SoVITS/blob/20c49a37282e13818cf942c08d25db3f75476a45/Dockerfile#L38

In follow-up

作者你好,添加了一个对页面内组件的方法埋点支持,希望能够review一下,谢谢! [https://github.com/zhengguorong/xbosstrack-wechat/pull/11](11)

### 🚀 The feature pydantic v2 [got released](https://github.com/pydantic/pydantic/releases). However, pandasai has a pydantic

### System Info pandasai: 1.5.17 OS: windows 11 python version: 3.10 ### 🐛 Describe the bug Get error when have chinese char "厘米" in csv file: ```csv name,age,height Kevin,18,“170厘米” Ada,22,172cm...

相关issue:[1092](https://github.com/RVC-Boss/GPT-SoVITS/issues/1092) 在[pr 1058](https://github.com/RVC-Boss/GPT-SoVITS/pull/1058)的基础上,优化了底膜的加载逻辑,只在api启动时加载一次,切换weights后如果需要可通过配置`load_base: true`加载。

每次api调用时候,都会实例化一个tts实例,其中`_init_models`方法中除了加载weights相关的模型,还重新加载了底膜,在当前的实现中属于重新加载了,如果有切换weights的需求,每次就重复加载了底膜。 基于此:是否可以优化一下TTS实例,在api初始化的时候加载一次底膜,后续就不用加载了?