Text Generation
Transformers
Safetensors
English
shivik_code
code
causal-lm
shivik
conversational
custom_code
# Load model directly
from transformers import AutoModelForCausalLM
model = AutoModelForCausalLM.from_pretrained("theaicompany02/Shivik-Code-1B", trust_remote_code=True, dtype="auto")Quick Links
Shivik-Code-1B
Shivik-Code-1B is a 1B-parameter code-focused causal language model from the Shivik family.
Model Overview
- Architecture: Decoder-only Transformer
- Parameters: ~1B
- Domain: Code generation and understanding
- Training: Custom-trained
Intended Use
- Code generation
- Code reasoning
- Lightweight local inference
- Research
Limitations
- Not instruction-aligned by default
- May hallucinate or produce incorrect code
License
Apache 2.0
- Downloads last month
- 5
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="theaicompany02/Shivik-Code-1B", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)