Model Card for KielMind-Lite
KielMind-Lite is a lightweight, hyper-efficient conversational language model fine-tuned specifically to power the text tier of the KielTech AI production API. Built on top of Llama-3.2-3B-Instruct, it balances rapid execution speed with highly coherent multi-turn dialogue capabilities, making it ideal for budget-friendly, serverless deployments (such as RunPod serverless architectures).
Model Details
Model Description
- Developed by: KielTech
- Shared by: kiel2
- Model type: Causal Language Model (Transformer)
- Language(s) (NLP): English
- License: Apache 2.0
- Finetuned from model:
croswil/Llama_Llama-3.2-3B-Instruct
Model Sources
Uses
Direct Use
KielMind-Lite is designed to directly handle natural language conversations, multi-turn assistant dialogue, structural data parsing, and instruction-following tasks via the KielTech FastAPI backend.
Out-of-Scope Use
This model should not be used for high-risk automation scenarios without human oversight, malicious content generation, or deployment on systems requiring absolute real-time factuality without a grounding retrieval mechanism (RAG).
Bias, Risks, and Limitations
As a derivative of the Llama-3.2 architecture, KielMind-Lite inherits standard LLM limitations, including potential hallucinations, temporal bias (knowledge cutoff), and sensitivity to prompt wording.
How to Get Started with the Model
You can run this model locally or in the cloud using standard Hugging Face transformers routines:
1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig
3
4model_id = "kiel2/KielMind-Lite"
5
6# Optimal setup matching the API environment
7quantization_config = BitsAndBytesConfig(load_in_4bit=True)
8
9tokenizer = AutoTokenizer.from_pretrained(model_id)
10model = AutoModelForCausalLM.from_pretrained(
11 model_id,
12 quantization_config=quantization_config,
13 device_map="auto"
14)
15
16messages = [
17 {"role": "user", "content": "Hello! Introduce yourself as the KielMind-Lite assistant."}
18]
19
20inputs = tokenizer.apply_chat_template(messages, add_generation_prompt=True, return_tensors="pt").to("cuda")
21outputs = model.generate(inputs, max_new_tokens=256, temperature=0.7)
22print(tokenizer.decode(outputs[0], skip_special_tokens=True))