feat: cog playground#3115
Conversation
* feat: add Go playground server * fix: strip protocol-relative playground redirects * fix: strip all playground proxy redirects
|
I found one critical issue in this PR:
The Fix: // pkg/cli/root.go
rootCmd.AddCommand(
newBuildCommand(),
newDebugCommand(),
newDoctorCommand(),
newInitCommand(),
newLoginCommand(),
newRunCommand(),
newPredictCommand(),
newPushCommand(),
newExecCommand(),
newServeCommand(),
newTrainCommand(),
newWeightsCommand(),
newPlaygroundCommand(), // <-- add this
) |
|
I'm Bonk, and I've done a quick review of your PR. This PR adds a I found one critical issue that prevents the command from being usable at all:
The command is fully implemented in Posted the fix as a PR comment: #3115 (comment) |
|
I found one critical issue in this PR:
The Fix: // pkg/cli/root.go
rootCmd.AddCommand(
newBuildCommand(),
newDebugCommand(),
newDoctorCommand(),
newInitCommand(),
newLoginCommand(),
newRunCommand(),
newPredictCommand(),
newPushCommand(),
newExecCommand(),
newServeCommand(),
newTrainCommand(),
newWeightsCommand(),
newPlaygroundCommand(), // <-- add this
) |
|
I'm Bonk, and I've done a quick review of your PR. This PR adds a I found one critical issue that prevents the command from being usable at all:
The command is fully implemented in Posted the fix as a PR comment: #3115 (comment) |
Cog Playground
A browser-based playground UI for testing Cog models locally, served by a Go HTTP server embedded in the Cog CLI.
Stack PRs