-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTokenUsageExtractor.php
More file actions
51 lines (42 loc) · 1.54 KB
/
TokenUsageExtractor.php
File metadata and controls
51 lines (42 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\AI\Platform\Bridge\ClaudeCode;
use Symfony\AI\Platform\Result\RawResultInterface;
use Symfony\AI\Platform\TokenUsage\TokenUsage;
use Symfony\AI\Platform\TokenUsage\TokenUsageExtractorInterface;
use Symfony\AI\Platform\TokenUsage\TokenUsageInterface;
/**
* Extracts token usage information from Claude Code CLI results.
*
* @author Christopher Hertel <mail@christopher-hertel.de>
*/
final class TokenUsageExtractor implements TokenUsageExtractorInterface
{
public function extract(RawResultInterface $rawResult, array $options = []): ?TokenUsageInterface
{
if ($options['stream'] ?? false) {
return null;
}
$content = $rawResult->getData();
if (!\array_key_exists('usage', $content)) {
return null;
}
$usage = $content['usage'];
$cachedTokens = null;
if (\array_key_exists('cache_creation_input_tokens', $usage) || \array_key_exists('cache_read_input_tokens', $usage)) {
$cachedTokens = ($usage['cache_creation_input_tokens'] ?? 0) + ($usage['cache_read_input_tokens'] ?? 0);
}
return new TokenUsage(
promptTokens: $usage['input_tokens'] ?? null,
completionTokens: $usage['output_tokens'] ?? null,
cachedTokens: $cachedTokens,
);
}
}