Autogen ContextPlus, User defined AutoGen model_context
Project description
🧠 Autogen ContextPlus
Modular, customizable, and serializable context engine for AutoGen — enabling structured message summarization, filtering, and rewriting logic with full compatibility.
✨ What is ContextPlus?
autogen-contextplus
provides a general-purpose context modifier system for AutoGen’s model_context
layer. It supports:
- ✅ Condition-triggered message summarization
- ✅ Agent- or function-based message rewriting
- ✅ Component-based serialization / deserialization
- ✅ Full support for user-defined logic via AutoGen
FunctionTool
or custom agents
🔧 Installation
pip install autogen-contextplus
For development and type checking:
pip install -e ".[dev]"
Example
import asyncio
from pprint import pprint
from typing import List
from autogen_core.models import UserMessage, AssistantMessage
from autogen_ext.models.replay import ReplayChatCompletionClient
from autogen_ext.models.anthropic import AnthropicChatCompletionClient
from autogen_agentchat.agents import AssistantAgent
from autogen_core import CancellationToken
from autogen_core.model_context import BufferedChatCompletionContext
from autogen_contextplus.conditions import (
MaxMessageCondition
)
from autogen_contextplus.base.types import (
ModifierFunction,
)
from autogen_contextplus import (
ContextPlusChatCompletionContext
)
from autogen_core.models import LLMMessage
def buffered_summary(
messages: List[LLMMessage],
non_summarized_messages: List[LLMMessage],
) -> List[LLMMessage]:
"""Summarize the last `buffer_count` messages."""
if len(messages) > 3:
return messages[-3:]
return messages
async def main():
client = ReplayChatCompletionClient(
chat_completions=[
"paris",
"seoul",
"paris",
"seoul",
]
)
context = ContextPlusChatCompletionContext(
modifier_func = buffered_summary,
modifier_condition = MaxMessageCondition(max_messages=2)
)
agent = AssistantAgent(
"helper",
model_client=client,
system_message="You are a helpful agent",
model_context=context
)
await agent.run(task="What is the capital of France?")
res = await context.get_messages()
print(f"[RESULTS] res:")
pprint(res)
print(f"[RESULTS] len_context : {len(res)}, context_type: {type(context)}")
await agent.run(task="What is the capital of Korea?")
res = await context.get_messages()
print(f"[RESULTS] res:")
pprint(res)
print(f"[RESULTS] len_context : {len(res)}, context_type: {type(context)}")
print("==========================")
cancellation_token = CancellationToken()
await agent.on_reset(cancellation_token=cancellation_token)
test = agent.dump_component()
agent = AssistantAgent.load_component(test)
context = agent.model_context
await agent.run(task="What is the capital of France?")
res = await context.get_messages()
print(f"[RESULTS] res:")
pprint(res)
print(f"[RESULTS] len_context : {len(res)}, context_type: {type(context)}")
await agent.run(task="What is the capital of Korea?")
res = await context.get_messages()
print(f"[RESULTS] res:")
pprint(res)
print(f"[RESULTS] len_context : {len(res)}, context_type: {type(context)}")
if __name__ == "__main__":
asyncio.run(main())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
autogen_contextplus-0.0.4.tar.gz
(17.7 kB
view details)
Built Distribution
File details
Details for the file autogen_contextplus-0.0.4.tar.gz
.
File metadata
- Download URL: autogen_contextplus-0.0.4.tar.gz
- Upload date:
- Size: 17.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 08fdfd09f075fc1a41d4c171c3f8c0028161ef153a121069805608e15a81f9eb |
|
MD5 | 8ce009e84a1a716a5c747d434d0f2246 |
|
BLAKE2b-256 | 298dbbdbda10e97d1311b29836ca26e748b908d5e8b5abfa20bd340dc23a1e89 |
File details
Details for the file autogen_contextplus-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: autogen_contextplus-0.0.4-py3-none-any.whl
- Upload date:
- Size: 21.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21c43de220c7cc1c4c1894d8be869e2d28cf74561562911ef774b03afab7d711 |
|
MD5 | f689e3f319809ac7bbf694a26ac18b20 |
|
BLAKE2b-256 | 938337b7c078ba406fef1a27b84e5643e30ba78a19bd4b5d47f7a92e17aff635 |