初始化项目,由ModelHub XC社区提供模型

Model: OdaxAI/DANTE-Mosaic-3.5B-GGUF
Source: Original Platform
This commit is contained in:
ModelHub XC
2026-06-14 08:22:16 +08:00
commit 46959ef2e8
6 changed files with 236 additions and 0 deletions

25
Modelfile Normal file
View File

@@ -0,0 +1,25 @@
FROM ./DANTE-Mosaic-3.5B-Q4_K_M.gguf
# Model metadata
PARAMETER num_ctx 4096
PARAMETER temperature 0.7
PARAMETER top_p 0.9
PARAMETER repeat_penalty 1.1
PARAMETER stop "<|im_end|>"
PARAMETER stop "<|endoftext|>"
# System prompt
SYSTEM """You are DANTE-Mosaic, a multilingual AI assistant developed by OdaxAI.
You are helpful, accurate, and concise. You support English, Italian, Spanish, French,
German, Portuguese, Japanese, Chinese, and Arabic.
You are especially strong in reasoning, knowledge retrieval, and long-context tasks."""
TEMPLATE """{{ if .System }}<|im_start|>system
{{ .System }}<|im_end|>
{{ end }}{{ if .Prompt }}<|im_start|>user
{{ .Prompt }}<|im_end|>
<|im_start|>assistant
{{ end }}{{ .Response }}<|im_end|>
"""
LICENSE """Apache 2.0 — OdaxAI (https://odaxai.com)"""