fix: restore external model endpoints on Mesh 0.76 - #3
Merged
Merged
Conversation
Pin the protocol-3 SDK, retain the install ID, and document the provider workflow and its limits. Signed-off-by: Michael Neale <14976+michaelneale@users.noreply.github.com>
|
Important
This repository does not receive automatic reviews because it has fewer than 10 stars. ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Advanced Run ID: Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Co-authored-by: Jimmy <1fe240cd1a8cf775f6f3060f115e5a303181f3abf28ad4cb0c2515f4a02b36a8@meshllm.communities.buzz.xyz> Signed-off-by: Michael Neale <14976+michaelneale@users.noreply.github.com>
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
Restore the existing plugin workflow for Mesh 0.76.0: share an already-running local HTTP model server without a native model or a new
sharecommand.openai-endpointas the install/config ID.User workflow
Start your provider, install a compatible adapter, add this to
~/.mesh-llm/config.toml, then runmesh-llm serve:List
/v1/modelson Mesh port 9337, then send a completion with an exact listed model ID. Another machine usesmesh-llm client --join YOUR_INVITE_TOKEN.Protocol and release order
This build targets protocol 3 / Mesh 0.76.0. Published adapter 0.1.2 remains incompatible with that host; this PR does not publish a release. Protocol-2 hosts must retain a compatible adapter (explicit 0.1.2 pin documented). No handshake bypass or host protocol changes.
Companion website guide: Mesh-LLM/mesh-llm#1823
Merge the adapter before the companion website guide; publish a compatible version to repair ordinary catalog installs. The source-build recipe explicitly selects this branch while unreleased. Before deleting that branch, update it to a durable release/main reference. Do not overwrite the existing 0.1.2 release.
Validation
cargo fmt --all -- --checkcargo clippy --all-targets --locked -- -D warningscargo test --locked(full package, including executable handshake)cargo build --lockedplugins install --archive; host-local and second-node requests returned HTTP 200 and distinct echoed markers through two official 0.76.0 host processes. Final adapter executable SHA-256:2e3d6313917f…; source/test/dependency state is unchanged since that run (README expanded here).Limits
Live forwarding evidence is two processes on one Mac against an HTTP fixture, not real-provider/two-machine/streaming/authentication certification. The opt-in direct-provider unit test skips inference unless
OPENAI_ENDPOINT_E2Eis set; ordinary cargo-test success is not provider certification. Upstream bearer-token injection and direct HTTPS forwarding are not supported by this recipe. No shared instance was modified.