mirror of
https://github.com/awfufu/qbot.git
synced 2026-03-01 05:19:44 +08:00
11 lines
219 B
Go
11 lines
219 B
Go
package api
|
|
|
|
func SetModelShow(c Client, model, modelShow string) error {
|
|
params := map[string]any{
|
|
"model": model,
|
|
"model_show": modelShow,
|
|
}
|
|
_, err := c.SendParams("_set_model_show", params)
|
|
return err
|
|
}
|