Files
L'électron rare ee57f7eac4 feat: free alternatives to all paid APIs — local fine-tune, OCR, STT, autorouter
Tools (zero API cost):
- local_finetune.py: Unsloth QLoRA on RTX 4090 → GGUF → Ollama
- ocr_pipeline.py: marker/surya/PyPDF2 for datasheet extraction
- stt_pipeline.py: whisper.cpp/vosk for meeting transcription
- freerouting_bridge.py: open source autorouter for KiCad PCBs

Plans closed with free alternatives:
- Plan 24: 15 tasks (fine-tune, OCR, STT, RAG, deploy)
- Plan 23/23v2: 3 tasks (fine-tune, benchmark)
- Plan 25: 4 tasks (SPICE, eval, Quilter, PCBDesigner)
- Plan 26: 1 task (Hypnoled validation)
- Plan 27: 1 task (Jetson → Docker NVIDIA)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-25 20:44:16 +01:00

19 lines
562 B
Plaintext

# Ollama Modelfile — auto-generated by local_finetune.py
# Base: {{BASE_MODEL}}
# Name: {{MODEL_NAME}}
FROM {{GGUF_PATH}}
PARAMETER temperature 0.2
PARAMETER top_p 0.9
PARAMETER repeat_penalty 1.1
TEMPLATE """<|im_start|>system
{{ .System }}<|im_end|>
<|im_start|>user
{{ .Prompt }}<|im_end|>
<|im_start|>assistant
"""
SYSTEM """You are a specialised engineering assistant fine-tuned on KXKM hardware project data (KiCad, embedded, DSP, power electronics). Answer precisely and concisely. When generating KiCad artifacts, use valid S-expression syntax."""