From d33175e5b62da7644c051e9daf9b5a188d5670dc Mon Sep 17 00:00:00 2001 From: Eugen Eisler Date: Fri, 11 Oct 2024 23:28:56 +0300 Subject: [PATCH] chore: we don't need tp configure DryRun vendor --- core/fabric.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/fabric.go b/core/fabric.go index 36abb875d..04213a66a 100644 --- a/core/fabric.go +++ b/core/fabric.go @@ -67,7 +67,7 @@ func NewFabricBase(db *db.Db) (ret *Fabric) { "Enter the index the name of your default model") ret.VendorsAll.AddVendors(openai.NewClient(), azure.NewClient(), ollama.NewClient(), groq.NewClient(), - gemini.NewClient(), anthropic.NewClient(), siliconcloud.NewClient(), openrouter.NewClient(), mistral.NewClient(), dryrun.NewClient()) + gemini.NewClient(), anthropic.NewClient(), siliconcloud.NewClient(), openrouter.NewClient(), mistral.NewClient()) return }