메시지 배치 결과 조회
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);