检索消息批次结果
GET/v1/messages/batches/{message_batch_id}/results
以 .jsonl 文件的形式流式传输消息批次的结果。
文件中的每一行都是一个 JSON 对象,包含消息批次中单个请求的结果。结果的顺序不保证与请求的顺序相同。请使用 custom_id 字段将结果与请求进行匹配。
在我们的用户指南中了解有关 Message Batches API 的更多信息
Parameters
Returns
检索消息批次结果
<?php
require_once dirname(__DIR__) . '/vendor/autoload.php';
$client = new Client(apiKey: 'my-anthropic-api-key');
$messageBatchIndividualResponse = $client->messages->batches->resultsStream(
'message_batch_id', workspaceID: 'wrkspc_011CZkZaBF1tNoB5wlCeusgy'
);
var_dump($messageBatchIndividualResponse);