mirror of
https://github.com/mudler/LocalAI.git
synced 2026-01-06 10:39:55 -06:00
* feat: split remaining backends and drop embedded backends - Drop silero-vad, huggingface, and stores backend from embedded binaries - Refactor Makefile and Dockerfile to avoid building grpc backends - Drop golang code that was used to embed backends - Simplify building by using goreleaser Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * chore(gallery): be specific with llama-cpp backend templates Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * chore(docs): update Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * chore(ci): minor fixes Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * chore: drop all ffmpeg references Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * fix: run protogen-go Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Always enable p2p mode Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Update gorelease file Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * fix(stores): do not always load Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Fix linting issues Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Simplify Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Mac OS fixup Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
39 lines
1000 B
YAML
39 lines
1000 B
YAML
---
|
|
name: "phi-4-chat"
|
|
|
|
config_file: |
|
|
backend: "llama-cpp"
|
|
mmap: true
|
|
function:
|
|
json_regex_match:
|
|
- "(?s)<Output>(.*?)</Output>"
|
|
capture_llm_results:
|
|
- (?s)<Thought>(.*?)</Thought>
|
|
replace_llm_results:
|
|
- key: (?s)<Thought>(.*?)</Thought>
|
|
value: ""
|
|
grammar:
|
|
properties_order: "name,arguments"
|
|
template:
|
|
chat_message: |
|
|
<|im_start|>{{ .RoleName }}<|im_sep|>
|
|
{{.Content}}<|im_end|>
|
|
chat: |
|
|
{{.Input}}
|
|
<|im_start|>assistant<|im_sep|>
|
|
completion: |
|
|
{{.Input}}
|
|
function: |
|
|
<|im_start|>system<|im_sep|>
|
|
You are an AI assistant that executes function calls, and these are the tools at your disposal:
|
|
{{range .Functions}}
|
|
{'type': 'function', 'function': {'name': '{{.Name}}', 'description': '{{.Description}}', 'parameters': {{toJson .Parameters}} }}
|
|
{{end}}
|
|
{{.Input}}<|im_end|>
|
|
context_size: 4096
|
|
f16: true
|
|
stopwords:
|
|
- <|end|>
|
|
- <|endoftext|>
|
|
- <|im_end|>
|