Skip to content

Commit 7e0a1a1

Browse files
authored
Use LLama 3.3 70B model by default for llnotes (#351)
This is a default provisioned model now, as mixtral was retired
1 parent b6c80e9 commit 7e0a1a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llnotes/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func main() {
3434
flags.StringVar(&cfg.GitHub.PrivateKeyPath, "github-app-private-key-path", "", "GitHub App Private Key file (*.pem) path")
3535
flags.StringVar(&cfg.GitHub.PrivateKeyBase64, "github-app-private-key", "", "GitHub App Private Key encoded in base64")
3636
flags.StringVar(&cfg.Databricks.Profile, "profile", "", "Databricks config profile")
37-
flags.StringVar(&cfg.Model, "model", "databricks-mixtral-8x7b-instruct", "Serving chat model")
37+
flags.StringVar(&cfg.Model, "model", "databricks-meta-llama-3-3-70b-instruct", "Serving chat model")
3838
flags.StringVar(&cfg.Org, "org", "databrickslabs", "GitHub org")
3939
flags.StringVar(&cfg.Repo, "repo", "ucx", "GitHub repository")
4040
},

0 commit comments

Comments
 (0)