agentconnect.utils.interaction_control module¶
Interaction control for the AgentConnect framework.
This module provides rate limiting and interaction tracking for agents, including token-based rate limiting, automatic cooldown, and integration with LangChain and LangGraph.
- class InteractionState(*values)¶
Bases:
Enum
Enum for interaction states.
- CONTINUE¶
Continue the interaction
- STOP¶
Stop the interaction
- WAIT¶
Wait before continuing the interaction
- CONTINUE = 'continue'¶
- STOP = 'stop'¶
- WAIT = 'wait'¶
- class RateLimitingCallbackHandler(max_tokens_per_minute=5500, max_tokens_per_hour=100000, cooldown_callback=None)¶
Bases:
BaseCallbackHandler
Callback handler that implements rate limiting for LLM calls.
This handler tracks token usage and enforces rate limits for LLM calls, triggering cooldown periods when limits are reached.
- Parameters:
- max_tokens_per_minute¶
Maximum tokens allowed per minute
- max_tokens_per_hour¶
Maximum tokens allowed per hour
- current_minute_tokens¶
Current token count for the minute
- current_hour_tokens¶
Current token count for the hour
- last_minute_reset¶
Timestamp of the last minute reset
- last_hour_reset¶
Timestamp of the last hour reset
- in_cooldown¶
Whether the handler is in cooldown
- cooldown_until¶
Timestamp when cooldown ends
- cooldown_callback¶
Optional callback function to call when cooldown is triggered
- on_llm_start(serialized, prompts, **kwargs)¶
Handle LLM start event.
- on_llm_end(response, **kwargs)¶
Handle LLM end event.
- class TokenConfig(max_tokens_per_minute, max_tokens_per_hour, current_minute_tokens=0, current_hour_tokens=0, last_minute_reset=1743055959.313969, last_hour_reset=1743055959.3139696)¶
Bases:
object
Configuration for token-based rate limiting.
- Parameters:
- max_tokens_per_minute¶
Maximum tokens allowed per minute
- max_tokens_per_hour¶
Maximum tokens allowed per hour
- current_minute_tokens¶
Current token count for the minute
- current_hour_tokens¶
Current token count for the hour
- last_minute_reset¶
Timestamp of the last minute reset
- last_hour_reset¶
Timestamp of the last hour reset
- add_tokens(token_count)¶
Add tokens to the current count.
- class InteractionControl(token_config, max_turns=20, current_turn=0, last_interaction_time=1743055959.3145032, _cooldown_callback=None, _conversation_stats=None)¶
Bases:
object
High-level control for agent interactions.
This class provides rate limiting, turn tracking, and conversation statistics for agent interactions.
- Parameters:
- token_config¶
Configuration for token-based rate limiting
- max_turns¶
Maximum number of turns in a conversation
- current_turn¶
Current turn number
- last_interaction_time¶
Timestamp of the last interaction
- _cooldown_callback¶
Optional callback function to call when cooldown is triggered
- _conversation_stats¶
Dictionary of conversation statistics
-
token_config:
TokenConfig
¶
- __post_init__()¶
Initialize conversation stats dictionary.
- async process_interaction(token_count, conversation_id=None)¶
Process an interaction and return the state.
- Parameters:
- Return type:
- Returns:
InteractionState indicating whether to continue, stop, or wait
- set_cooldown_callback(callback)¶
Set a callback function to be called when cooldown is triggered.
- get_conversation_stats(conversation_id=None)¶
Get statistics for a specific conversation or all conversations.
- get_callback_manager()¶
Create a callback manager with rate limiting for LangChain/LangGraph.
- Return type:
- Returns:
CallbackManager with rate limiting callbacks