RyanChen

Results 4 issues of RyanChen

使用docker启动项目之后,出现下面的错误,应该是免费打码失败。但是现在作者推荐的若快打码也挂了,求推荐新的打码平台以及如何替换打码平台。 ```bash 账号正在登录中,3 秒后自动重试 打码失败: 错误原因 从免费打码获取结果失败 5 秒后重新获取验证码 账号正在登录中,3 秒后自动重试 账号正在登录中,3 秒后自动重试 ```

### Describe the issue My python version: 3.11 When i run the code from the notebook `agentchat_auto_feedback_from_code_execution.ipynb`. ```python # create an AssistantAgent named "assistant" assistant = autogen.AssistantAgent( name="assistant", llm_config={ "cache_seed":...

documentation
code-execution
models
0.2
needs-triage

Sorry, I am new for it. According to the code in [inference_wizardcoder.py](https://github.com/nlpxucan/WizardLM/blob/main/WizardCoder/src/inference_wizardcoder.py), i have created a service and performed benchmark-test. The result is: when the concurrency is 5, it takes...

I want to convert WizardCoder to ONNX. According to https://huggingface.co/docs/optimum/onnxruntime/usage_guides/models, I write below code to export: ```python from optimum.onnxruntime import ORTModelForCausalLM model_path = "../WizardCoder-15B-V1.0" onnxModel = ORTModelForCausalLM.from_pretrained(model_path, export=True) ``` It...