diff --git a/Makefile b/Makefile index b17dba247d8a..88b7307da3ed 100644 --- a/Makefile +++ b/Makefile @@ -317,7 +317,7 @@ run: prepare ## run local-ai test-models/testmodel: mkdir test-models mkdir test-dir - wget -q https://huggingface.co/TheBloke/stable-code-3b-GGUF/resolve/main/stable-code-3b.Q2_K.gguf -O test-models/testmodel + wget -q https://huggingface.co/SlyEcho/open_llama_3b_ggml/resolve/main/open-llama-3b-q4_0.bin -O test-models/testmodel wget -q https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-base.en.bin -O test-models/whisper-en wget -q https://huggingface.co/mudler/all-MiniLM-L6-v2/resolve/main/ggml-model-q4_0.bin -O test-models/bert wget -q https://cdn.openai.com/whisper/draft-20220913a/micro-machines.wav -O test-dir/audio.wav diff --git a/api/api_test.go b/api/api_test.go index 6e99609db0a0..f035f4057c5e 100644 --- a/api/api_test.go +++ b/api/api_test.go @@ -29,7 +29,7 @@ import ( "github.com/sashabaranov/go-openai/jsonschema" ) -const testPrompt = "import torch\nimport torch.nn as nn" +const testPrompt = "test" type modelApplyRequest struct { ID string `json:"id"`