forked from janhq/jan
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add: phi-3 * chore: bump version * fix: correct model id
- Loading branch information
1 parent
f288a86
commit 3c294d6
Showing
2 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
extensions/inference-nitro-extension/resources/models/phi3-3.8b/model.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"sources": [ | ||
{ | ||
"url": "https://huggingface.co/microsoft/Phi-3-mini-4k-instruct-gguf/resolve/main/Phi-3-mini-4k-instruct-q4.gguf", | ||
"filename": "Phi-3-mini-4k-instruct-q4.gguf" | ||
} | ||
], | ||
"id": "phi3-3.8b", | ||
"object": "model", | ||
"name": "Phi-3 Mini", | ||
"version": "1.0", | ||
"description": "Phi-3 Mini is Microsoft's newest, compact model designed for mobile use.", | ||
"format": "gguf", | ||
"settings": { | ||
"ctx_len": 4096, | ||
"prompt_template": "<|system|>\n{system_message}<|end|>\n<|user|>\n{prompt}<|end|>\n<|assistant|>\n", | ||
"llama_model_path": "Phi-3-mini-4k-instruct-q4.gguf" | ||
}, | ||
"parameters": { | ||
"max_tokens": 4096, | ||
"stop": ["<|end|>"] | ||
}, | ||
"metadata": { | ||
"author": "Microsoft", | ||
"tags": [ | ||
"3B", | ||
"Finetuned" | ||
], | ||
"size": 2320000000 | ||
}, | ||
"engine": "nitro" | ||
} |