- Modelfile.id-9b 생성: qwen3.5:9b-q8_0 기반, no-think ChatML 템플릿 - 모든 Ollama 호출(8개 노드+2개 Python)에 system: '/no_think' 이중 방어 - Call Haiku/Opus: 이드 페르소나 [자아]/[성격]/[말투]/[응답 원칙]/[기억] 강화 - Call Qwen Response: system 파라미터 분리 + 경량 자아 추가 - Claude API 노드에는 /no_think 미적용 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
16 lines
388 B
Plaintext
16 lines
388 B
Plaintext
FROM qwen3.5:9b-q8_0
|
|
|
|
SYSTEM "/no_think"
|
|
|
|
PARAMETER temperature 0.7
|
|
PARAMETER num_ctx 8192
|
|
|
|
TEMPLATE """{{- if .System }}<|im_start|>system
|
|
{{ .System }}<|im_end|>
|
|
{{ end }}{{- range .Messages }}{{- if eq .Role "user" }}<|im_start|>user
|
|
{{ .Content }}<|im_end|>
|
|
{{ else if eq .Role "assistant" }}<|im_start|>assistant
|
|
{{ .Content }}<|im_end|>
|
|
{{ end }}{{- end }}<|im_start|>assistant
|
|
"""
|