From 4ad1fde6675548dee44f8e380ec33e3f9ba4dc9a Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Mon, 26 Feb 2024 00:56:51 -0700 Subject: [PATCH] Speed up chat --- lib/replicate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/replicate.go b/lib/replicate.go index 51d5ad2..391fe31 100644 --- a/lib/replicate.go +++ b/lib/replicate.go @@ -32,7 +32,7 @@ func ReplicateTextGeneration(prompt string) (string, error) { Events: []replicate.WebhookEventType{"start", "completed"}, } - prediction, predictionError := client.Run(context.Background(), "meta/llama-2-70b-chat:02e509c789964a7ea8736978a43525956ef40397be9033abf9fd2badfe68c9e3", input, &webhook) + prediction, predictionError := client.Run(context.Background(), "meta/llama-2-13b-chat:f4e2de70d66816a838a89eeeb621910adffb0dd0baba3976c96980970978018d", input, &webhook) if predictionError != nil { return "", predictionError