MCPcopy Create free account
hub / github.com/idank/explainshell / BatchResults

Class BatchResults

explainshell/extraction/llm/providers/__init__.py:34–39  ·  view source on GitHub ↗

Return type for BatchProvider.collect_results.

Source from the content-addressed store, hash-verified

32
33
34class BatchResults(NamedTuple):
35 """Return type for BatchProvider.collect_results."""
36
37 responses: dict[str, str]
38 """Mapping of request custom_id to LLM response text."""
39 usage: TokenUsage
40
41
42class BatchEntry(NamedTuple):

Calls

no outgoing calls