BinaryIOLike# class langsmith.schemas.BinaryIOLike(*args, **kwargs)[source]# 用于二进制IO类对象的协议。 方法 __init__(*args, **kwargs) getvalue() 获取值函数。 read([size]) 读取函数。 seek(offset[, whence]) 定位函数。 __init__(*args, **kwargs)# getvalue() → bytes[source]# 获取值函数。 返回类型: bytes read(size: int = -1) → bytes[source]# 读取函数。 参数: size (int) 返回类型: bytes seek(offset: int, whence: int = 0) → int[source]# 定位函数。 参数: offset (int) whence (int) 返回类型: int