Skip to content

src.llm.tool_detection.base_detection_strategy.BaseToolCallDetectionStrategy

Bases: ABC

Abstract base class for implementing tool call detection strategies.

This class defines the interface for strategies that detect when an LLM wants to make tool calls within its response stream. Implementations should handle parsing of SSE chunks to identify tool call patterns and maintain any necessary state between chunks.

The detection process happens in three phases: 1. Reset - Clear any accumulated state 2. Detect - Process incoming chunks sequentially 3. Finalize - Handle any remaining state and make final determination

Source code in src/llm/tool_detection/base_detection_strategy.py
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
class BaseToolCallDetectionStrategy(ABC):
    """Abstract base class for implementing tool call detection strategies.

    This class defines the interface for strategies that detect when an LLM
    wants to make tool calls within its response stream. Implementations should
    handle parsing of SSE chunks to identify tool call patterns and maintain
    any necessary state between chunks.

    The detection process happens in three phases:
    1. Reset - Clear any accumulated state
    2. Detect - Process incoming chunks sequentially
    3. Finalize - Handle any remaining state and make final determination
    """

    @abstractmethod
    def reset(self) -> None:
        """Reset the strategy's internal state.

        This method should be called before starting a new detection sequence
        to ensure no state is carried over from previous detections.

        Implementation should clear any accumulated buffers, counters, or other
        state variables used during detection.
        """
        pass

    @abstractmethod
    async def detect_chunk(
            self,
            sse_chunk: SSEChunk,
            context: StreamContext
    ) -> DetectionResult:
        """Process an SSE chunk to detect potential tool calls.

        Args:
            sse_chunk (SSEChunk): The chunk of streaming response to analyze.
                Contains delta updates and choice information.
            context (StreamContext): Contextual information about the current
                stream, including conversation history and available tools.

        Returns:
            DetectionResult: The result of analyzing this chunk, including
                whether a tool call was detected and any extracted tool
                call information.
        """
        pass

    @abstractmethod
    async def finalize_detection(
            self,
            context: StreamContext
    ) -> DetectionResult:
        """Complete the detection process and handle any remaining state.

        This method should be called after all chunks have been processed
        to handle any buffered content or partial tool calls that may need
        final processing.

        Args:
            context (StreamContext): Contextual information about the current
                stream, including conversation history and available tools.

        Returns:
            DetectionResult: Final detection result, including any tool calls
                that were detected from accumulated state.
        """
        pass

detect_chunk(sse_chunk, context) abstractmethod async

Process an SSE chunk to detect potential tool calls.

Parameters:

Name Type Description Default
sse_chunk SSEChunk

The chunk of streaming response to analyze. Contains delta updates and choice information.

required
context StreamContext

Contextual information about the current stream, including conversation history and available tools.

required

Returns:

Name Type Description
DetectionResult DetectionResult

The result of analyzing this chunk, including whether a tool call was detected and any extracted tool call information.

Source code in src/llm/tool_detection/base_detection_strategy.py
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
@abstractmethod
async def detect_chunk(
        self,
        sse_chunk: SSEChunk,
        context: StreamContext
) -> DetectionResult:
    """Process an SSE chunk to detect potential tool calls.

    Args:
        sse_chunk (SSEChunk): The chunk of streaming response to analyze.
            Contains delta updates and choice information.
        context (StreamContext): Contextual information about the current
            stream, including conversation history and available tools.

    Returns:
        DetectionResult: The result of analyzing this chunk, including
            whether a tool call was detected and any extracted tool
            call information.
    """
    pass

finalize_detection(context) abstractmethod async

Complete the detection process and handle any remaining state.

This method should be called after all chunks have been processed to handle any buffered content or partial tool calls that may need final processing.

Parameters:

Name Type Description Default
context StreamContext

Contextual information about the current stream, including conversation history and available tools.

required

Returns:

Name Type Description
DetectionResult DetectionResult

Final detection result, including any tool calls that were detected from accumulated state.

Source code in src/llm/tool_detection/base_detection_strategy.py
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@abstractmethod
async def finalize_detection(
        self,
        context: StreamContext
) -> DetectionResult:
    """Complete the detection process and handle any remaining state.

    This method should be called after all chunks have been processed
    to handle any buffered content or partial tool calls that may need
    final processing.

    Args:
        context (StreamContext): Contextual information about the current
            stream, including conversation history and available tools.

    Returns:
        DetectionResult: Final detection result, including any tool calls
            that were detected from accumulated state.
    """
    pass

reset() abstractmethod

Reset the strategy's internal state.

This method should be called before starting a new detection sequence to ensure no state is carried over from previous detections.

Implementation should clear any accumulated buffers, counters, or other state variables used during detection.

Source code in src/llm/tool_detection/base_detection_strategy.py
24
25
26
27
28
29
30
31
32
33
34
@abstractmethod
def reset(self) -> None:
    """Reset the strategy's internal state.

    This method should be called before starting a new detection sequence
    to ensure no state is carried over from previous detections.

    Implementation should clear any accumulated buffers, counters, or other
    state variables used during detection.
    """
    pass