Execution Semantics Profile (ESP) for ADP v0.2.0#4
Merged
Merged
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #4 +/- ##
==========================================
+ Coverage 90.46% 93.70% +3.23%
==========================================
Files 10 10
Lines 388 397 +9
==========================================
+ Hits 351 372 +21
+ Misses 22 13 -9
+ Partials 15 12 -3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR introduces the Execution Semantics Profile (ESP) for ADP v0.2.0, defining execution semantics for ADP agents while maintaining full backward compatibility with v0.1.0. The implementation includes comprehensive SDK support across Python, TypeScript, Go, and Rust, along with significant test coverage improvements.
What's New
Execution Semantics Profile (ESP)
spec/esp.md): Defines how ADP agents are interpreted and executed by conformant runnersinputs,context,memory,tool_responses)tool_reffieldSchema Updates
schemas/flow.schema.json: Added optionaltool_ref,prompt_ref,model_ref,system_prompt_reffields to node definitionschemas/runtime.schema.json: Added optionalmodels[]array for explicit model configurationschemas/adp.schema.json: Updated to supportadp_version: "0.2.0"SDK Updates
All SDKs now fully support ADP v0.2.0:
Python SDK:
TypeScript SDK:
Go SDK:
Rust SDK:
Documentation Updates
spec/esp.md: Complete ESP specification (897 lines)spec/conformance.md: Added ESP-conformant runner requirementsspec/flow.md: Documented newtool_reffieldspec/runtime.md: Documented newruntime.models[]arrayCHANGELOG.md: Documented v0.2.0 changesfixtures/adp_v0.2.0.yaml: Example v0.2.0 manifest with ESP featuresBackward Compatibility
✅ Fully backward compatible: All ADP v0.1.0 manifests remain valid and continue to work unchanged. New v0.2.0 fields are optional.
Test Coverage
Breaking Changes
None. This is a fully backward-compatible release.
Migration Guide
No migration required. Existing v0.1.0 manifests continue to work. To use ESP features:
adp_version: "0.2.0"in your manifesttool_refto flow nodes that use toolsruntime.models[]for explicit model configurationmodel_ref,prompt_ref,system_prompt_refto flow nodesRelated Issues
Checklist