Initial commit

This commit is contained in:
LZH-YS1998
2026-07-01 17:56:31 +08:00
commit d78931979d
731 changed files with 311088 additions and 0 deletions
@@ -0,0 +1,24 @@
"""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",
]