Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
909 changes: 909 additions & 0 deletions PHASE3_4_INTEGRATION_GUIDE.md

Large diffs are not rendered by default.

461 changes: 461 additions & 0 deletions QUICK_START_CONTEXT.md

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions agentuniverse/agent/context/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# !/usr/bin/env python3
# -*- coding:utf-8 -*-

# @Time : 2025/12/03 14:00
# @Author : kaichuan

# @FileName: __init__.py
"""Context engineering module for intelligent context management."""

from agentuniverse.agent.context.context_model import (
ContextSegment,
ContextWindow,
ContextMetadata,
ContextType,
ContextPriority,
)
from agentuniverse.agent.context.context_store import ContextStore
from agentuniverse.agent.context.context_manager import ContextManager

__all__ = [
'ContextSegment',
'ContextWindow',
'ContextMetadata',
'ContextType',
'ContextPriority',
'ContextStore',
'ContextManager',
]
23 changes: 23 additions & 0 deletions agentuniverse/agent/context/benchmark/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env python3
# -*- coding:utf-8 -*-

# @Time : 2025/12/04 14:30
# @Author : kaichuan
# @FileName: __init__.py
"""Benchmarking framework for Context Engineering system.

This module provides comprehensive benchmarking tools for evaluating
context engineering performance against industry standards.
"""

from agentuniverse.agent.context.benchmark.benchmark_suite import (
ContextBenchmarkSuite,
BenchmarkMetrics,
BenchmarkResult,
)

__all__ = [
'ContextBenchmarkSuite',
'BenchmarkMetrics',
'BenchmarkResult',
]
Loading