Files
qbot/api/set_model_show.go
2025-12-01 19:35:50 +08:00

11 lines
213 B
Go

package api
func SetModelShow(c Client, model, modelShow string) error {
params := map[string]any{
"model": model,
"model_show": modelShow,
}
_, err := c.Send("_set_model_show", params)
return err
}