1 Star 0 Fork 0

糍粑/funk-open-ai

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
error_accumulator.go 865 Bytes
一键复制 编辑 原始数据 按行查看 历史
sashabaranov 提交于 2023-03-22 09:56 . simplify unmarshal (#191)
package openai
import (
"bytes"
"fmt"
"io"
)
type errorAccumulator interface {
write(p []byte) error
unmarshalError() *ErrorResponse
}
type errorBuffer interface {
io.Writer
Len() int
Bytes() []byte
}
type defaultErrorAccumulator struct {
buffer errorBuffer
unmarshaler unmarshaler
}
func newErrorAccumulator() errorAccumulator {
return &defaultErrorAccumulator{
buffer: &bytes.Buffer{},
unmarshaler: &jsonUnmarshaler{},
}
}
func (e *defaultErrorAccumulator) write(p []byte) error {
_, err := e.buffer.Write(p)
if err != nil {
return fmt.Errorf("error accumulator write error, %w", err)
}
return nil
}
func (e *defaultErrorAccumulator) unmarshalError() (errResp *ErrorResponse) {
if e.buffer.Len() == 0 {
return
}
err := e.unmarshaler.unmarshal(e.buffer.Bytes(), &errResp)
if err != nil {
errResp = nil
}
return
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/pc_859107393/funk-open-ai.git
git@gitee.com:pc_859107393/funk-open-ai.git
pc_859107393
funk-open-ai
funk-open-ai
master

搜索帮助