Skip to content

chore: pull ui tool with matching release tag #566

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion pkg/cli/gptscript.go
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ func (r *GPTScript) Run(cmd *cobra.Command, args []string) (retErr error) {

// If the user is trying to launch the chat-builder UI, then set up the tool and options here.
if r.UI {
args = append([]string{env.VarOrDefault("GPTSCRIPT_CHAT_UI_TOOL", "github.com/gptscript-ai/ui")}, args...)
args = append([]string{uiTool()}, args...)

// If args has more than one element, then the user has provided a file.
if len(args) > 1 {
Expand Down Expand Up @@ -493,3 +493,15 @@ func (r *GPTScript) Run(cmd *cobra.Command, args []string) (retErr error) {

return r.PrintOutput(toolInput, s)
}

// uiTool returns the versioned UI tool reference for the current GPTScript version.
// For release versions, a reference with a matching release tag is returned.
// For all other versions, a reference to main is returned.
func uiTool() string {
ref := "github.com/gptscript-ai/ui"
if tag := version.Tag; !strings.Contains(tag, "v0.0.0-dev") {
ref = fmt.Sprintf("%s@%s", ref, tag)
}

return env.VarOrDefault("GPTSCRIPT_CHAT_UI_TOOL", ref)
}
Loading