feat: migrate baidu provider to v2 api #1527
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Ⅰ. Describe what this PR did
迁移 baidu api 至 v2 版本,完全兼容 openai 协议格式,处理请求的逻辑更简单。
另外 v2 版本的 bearer token (apiToken) 其实还是有过期时间的,最长时间是 24 小时。 https://cloud.baidu.com/doc/IAM/s/Mm2x80phi
为了处理 apiToken 的刷新问题,新增 TickFuncHandler 接口,provider 如果有定时任务的需求(例如定时刷新 token)可以选择实现该接口。
用户应该在 baiduAccessKeyAndSecret 以
<access-key>:<access-secret>
的格式填写 access key 和 access secret,每隔 1 小时会用这个凭证去刷新 apiToken。Ⅱ. Does this pull request fix one issue?
fixes #1504
Ⅲ. Why don't you add test cases (unit test/integration test)?
以下是完整的配置示例:
Ⅳ. Describe how to verify it
Ⅴ. Special notes for reviews