__init__.py 283 B

12345678910
  1. """上下文工程模块
  2. 为HelloAgents框架提供上下文工程能力:
  3. - ContextBuilder: GSSC流水线(Gather-Select-Structure-Compress)
  4. """
  5. from .builder import ContextBuilder, ContextConfig, ContextPacket
  6. __all__ = ["ContextBuilder", "ContextConfig", "ContextPacket"]