CLI: add unsloth connect to point coding agents at a local Studio server (#6407)
* unsloth connect * harden error paths, fix codex oss_provider routing, tighten key cache perms * Increase timeout for studio server lookup and enhance key caching logic * openclaw/opencode/hermes to connect * improvements * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * error handling for requested models not loaded * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix claude connect env under WSL * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Lee Jackson <130007945+Imagineer99@users.noreply.github.com> Co-authored-by: imagineer99 <samleejackson0@gmail.com>
This commit is contained in:
parent
c0cd3a506c
commit
fbed3f258c
4 changed files with 1415 additions and 2 deletions
|
|
@ -11,6 +11,7 @@ from importlib.metadata import version as package_version, PackageNotFoundError
|
|||
from unsloth_cli.commands.train import train
|
||||
from unsloth_cli.commands.inference import inference
|
||||
from unsloth_cli.commands.chat import chat
|
||||
from unsloth_cli.commands.connect import connect_app
|
||||
from unsloth_cli.commands.export import export, list_checkpoints
|
||||
from unsloth_cli.commands.studio import (
|
||||
run as studio_run,
|
||||
|
|
@ -77,6 +78,11 @@ app.command()(chat)
|
|||
app.command()(export)
|
||||
app.command("list-checkpoints")(list_checkpoints)
|
||||
app.add_typer(studio_app, name = "studio", help = "Unsloth Studio commands.")
|
||||
app.add_typer(
|
||||
connect_app,
|
||||
name = "connect",
|
||||
help = "Connect a coding agent (Claude Code, Codex) to Studio.",
|
||||
)
|
||||
|
||||
# Top-level `unsloth run` aliases `unsloth studio run`; same context
|
||||
# so unknown flags still pass through to llama-server.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue