Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Access to Chat History in Hooks #346

Open
gabriansa opened this issue Mar 26, 2025 · 0 comments
Open

Access to Chat History in Hooks #346

gabriansa opened this issue Mar 26, 2025 · 0 comments
Labels
enhancement New feature or request

Comments

@gabriansa
Copy link

Description

Add ability to access and modify the chat history through RunHooks/AgentHooks while the agent is running. This would allow adding custom messages or modifying the conversation context during execution.

Use Case

  • Injecting context-specific messages during agent execution
  • Modifying conversation history in response to specific events

Proposed Dummy Implementation

  1. Add message history to RunContextWrapper
  2. Expose methods to add/modify messages through hooks:
class SomeHooks(AgentHooks[SomeContext]):    
    async def on_tool_end(
        self,
        context: RunContextWrapper[SomeContext],
        agent: Any,
        tool: Tool,
    ) -> None:
        agent.add_message({"role": "user", "content": "some text"})
@gabriansa gabriansa added the enhancement New feature or request label Mar 26, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant