检索消息批次结果
以 .jsonl 文件的形式流式传输消息批次的结果。
文件中的每一行都是一个 JSON 对象,包含消息批次中单个请求的结果。结果的顺序不保证与请求的顺序相同。请使用 custom_id 字段将结果与请求进行匹配。
在我们的用户指南中了解有关 Message Batches API 的更多信息
Parameters
BatchResultsParams parameters
ID of the Message Batch.
IReadOnlyList<AnthropicBeta> betasOptional header to specify the beta version(s) you want to use.
Optional header to specify the beta version(s) you want to use.
string workspaceIDOptional header to select the Workspace for this request. The value is a Workspace ID (for example, wrkspc_011CZkZaBF1tNoB5wlCeusgy).
Optional header to select the Workspace for this request. The value is a Workspace ID (for example, wrkspc_011CZkZaBF1tNoB5wlCeusgy).
Only needed for credentials that can act on more than one Workspace. A credential that belongs to a specific Workspace may omit it; if sent, it must match that Workspace.
Returns
class BetaMessageBatchIndividualResponse { CustomID; Result; }This is a single line in the response .jsonl file and does not represent the response as a whole.
This is a single line in the response .jsonl file and does not represent the response as a whole.
required string CustomIDDeveloper-provided ID created for each request in a Message Batch. Useful for matching results to requests, as results may be given out of request order.
Developer-provided ID created for each request in a Message Batch. Useful for matching results to requests, as results may be given out of request order.
Must be unique for each request within the Message Batch.
required BetaMessageBatchResult ResultProcessing result for this request.
Processing result for this request.
Contains a Message output if processing was successful, an error response if processing failed, or the reason why processing was not attempted, such as cancellation or expiration.
BatchResultsParams parameters = new() { MessageBatchID = "message_batch_id" };
await foreach (var betaMessageBatchIndividualResponse in client.Beta.Messages.Batches.ResultsStreaming(parameters))
{
Console.WriteLine(betaMessageBatchIndividualResponse);
}