Files
OpenOPC/opc/layer3_agent/prompt_harness/__init__.py
T
2026-07-01 17:56:31 +08:00

25 lines
711 B
Python

"""Prompt harness helpers for Native Runtime V2."""
from .artifacts import (
RUNTIME_ARTIFACT_DELTA_HEADER,
RUNTIME_ARTIFACT_HEADER,
is_runtime_artifact_message,
render_runtime_artifact_messages,
strip_runtime_artifact_messages,
)
from .builder import PromptHarnessBuilder
from .tool_strategy import NativeToolStrategyBuilder
from .types import PromptHarnessOutput, RuntimeArtifact
__all__ = [
"PromptHarnessBuilder",
"NativeToolStrategyBuilder",
"PromptHarnessOutput",
"RuntimeArtifact",
"RUNTIME_ARTIFACT_HEADER",
"RUNTIME_ARTIFACT_DELTA_HEADER",
"is_runtime_artifact_message",
"render_runtime_artifact_messages",
"strip_runtime_artifact_messages",
]