LCP v0.3 migration (call/quote/complete) - #17
Closed
YusukeShimizu wants to merge 4 commits into
Closed
Conversation
Define the v0.3 call → quote → pay → stream → complete flow. - Update the wire spec (docs/protocol) to v0.3 message types and TLVs. - Redesign the LCPD gRPC API around CallSpec/Quote/Complete. - Regenerate Go protobuf/gRPC stubs (go-lcpd/gen and proto-go).
Update the reference implementation to match the v0.3 wire + gRPC model. - Switch requester/provider flows to call → quote → complete. - Add v0.3 lcpwire message types (call/quote/complete, supported_methods). - Update gRPC service, job stores, tools, and tests accordingly. - Remove the legacy typed task helpers (lcptasks).
Switch the gateway to the v0.3 call/quote/complete gRPC API. - Build CallSpec with TLV params (model) and raw request bytes. - Route by peer supported_methods; v0.3 manifests do not advertise models. - Rename response header X-Lcp-Job-Id -> X-Lcp-Call-Id. - Update tests and go-lcpd openai-serve regtest assertions.
Update user-facing docs to match the breaking v0.3 terminology and APIs. - Align go-lcpd and openai-serve docs with call/quote/complete. - Replace supported_tasks with supported_methods and remove model discovery. - Document X-Lcp-Call-Id and other updated headers.
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.
Update LCP wire spec to v0.3 (manifest → call → quote → pay → stream → complete).