We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
例行检查
问题描述
智谱 API 平台现在会因为传递内容违规进行 API 临时/永久封禁操作。 可以在请求时传递 user_id 作为规避,只会封禁当前用户下该 user_id 的 API 请求。(类似 OpenAI 的 user 参数,作为审查要求)
参考: https://open.bigmodel.cn/dev/howuse/securityaudit
尝试以后不论是直接传递 user 参数还是在 extra_body 中传递 user_id 参数,最终都无法传递到智谱的接口。
不擅长 Go 语言开发无法直接提 PR,只能开此 Issue。期望项目维护者跟进,如有需要可以辅助调试,提供更新信息。感谢。
复现步骤
请求参数如下
conf = ConfigObj("config.ini") client = OpenAI( base_url=conf["OpenAI"]["base_url"], api_key=conf["OpenAI"]["api_key"], ) r = client.chat.completions.create( model="glm-4-flashx", messages=[{"role": "user", "content": "hi"}], extra_body={ "user_id": "xxxxxx_test_01" }, user="xxxxxx_test_01" )
API 端实际收到请求参数如下
{ "model": "glm-4-flashx", "messages": [ { "role": "user", "content": "hi" } ], "stop": null }
可见,user_id 参数未能被正确传递。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
例行检查
问题描述
智谱 API 平台现在会因为传递内容违规进行 API 临时/永久封禁操作。
可以在请求时传递 user_id 作为规避,只会封禁当前用户下该 user_id 的 API 请求。(类似 OpenAI 的 user 参数,作为审查要求)
参考: https://open.bigmodel.cn/dev/howuse/securityaudit
尝试以后不论是直接传递 user 参数还是在 extra_body 中传递 user_id 参数,最终都无法传递到智谱的接口。
不擅长 Go 语言开发无法直接提 PR,只能开此 Issue。期望项目维护者跟进,如有需要可以辅助调试,提供更新信息。感谢。
复现步骤
请求参数如下
API 端实际收到请求参数如下
可见,user_id 参数未能被正确传递。
The text was updated successfully, but these errors were encountered: