File size: 6,117 Bytes
6f82334
66e0804
 
 
 
6f82334
66e0804
 
 
 
 
 
 
 
6f82334
 
 
 
66e0804
6f82334
66e0804
6f82334
66e0804
 
 
 
 
6f82334
 
 
66e0804
6f82334
66e0804
6f82334
66e0804
6f82334
66e0804
6f82334
66e0804
 
 
 
 
 
6f82334
66e0804
6f82334
66e0804
6f82334
66e0804
 
 
 
 
 
 
 
 
6f82334
66e0804
6f82334
66e0804
6f82334
66e0804
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6f82334
 
 
66e0804
6f82334
66e0804
6f82334
66e0804
 
 
 
 
 
6f82334
66e0804
6f82334
66e0804
 
 
 
 
 
6f82334
 
66e0804
 
 
 
 
 
 
6f82334
66e0804
 
 
 
 
6f82334
66e0804
6f82334
66e0804
6f82334
66e0804
6f82334
66e0804
 
 
 
 
6f82334
 
66e0804
6f82334
66e0804
 
 
 
 
 
 
 
6f82334
66e0804
6f82334
66e0804
6f82334
66e0804
6f82334
66e0804
 
 
6f82334
66e0804
 
 
 
 
 
 
 
6f82334
 
66e0804
6f82334
66e0804
6f82334
66e0804
6f82334
66e0804
 
 
 
 
6f82334
66e0804
 
6f82334
 
 
66e0804
6f82334
66e0804
 
 
 
 
6f82334
 
 
66e0804
6f82334
66e0804
 
 
 
 
 
 
 
 
6f82334
 
 
66e0804
 
 
 
 
6f82334
66e0804
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
---
language:
  - en
license: mit
base_model: moonshotai/Kimi-K2-Instruct
tags:
  - coding
  - reasoning
  - winter-llm
  - agents
  - math
creators:
  - name: INEZA AIME BRUNO
    url: https://huggingface.co/brucoder
---

<div align="center">

# ❄️ Winter Core 1.2 Code

**The strongest model in the Winter LLM family**

*Built by [INEZA AIME BRUNO](https://huggingface.co/brucoder)*

[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![HuggingFace](https://img.shields.io/badge/🤗-brucoder-yellow)](https://huggingface.co/brucoder)
[![Winter LLM](https://img.shields.io/badge/Winter-LLM%20Family-lightblue)](https://huggingface.co/brucoder)

</div>

---

## What is Winter Core 1.2 Code?

**Winter Core 1.2 Code** is the flagship model of the Winter LLM project, created by **INEZA AIME BRUNO**. It is built for people who need a model that does not just answer — it *thinks*, it *codes*, and it *solves*.

It excels at:

- **Code generation** — writes clean, working code in Python, JavaScript, TypeScript, Rust, Go, C++, SQL, and more
- **Debugging** — finds bugs, explains why they happen, and fixes them
- **Reasoning** — breaks down complex problems step by step like a senior engineer
- **Math** — solves mathematical problems with clear working shown
- **Agentic tasks** — can plan and execute multi-step tasks autonomously
- **General knowledge** — broad world knowledge for everyday questions

---

## Model Details

| Property | Value |
|---|---|
| **Creator** | INEZA AIME BRUNO |
| **HF Profile** | [@brucoder](https://huggingface.co/brucoder) |
| **Model Family** | Winter LLM |
| **Version** | 1.2 Code |
| **Language** | English |
| **License** | MIT — free for everyone |
| **Use** | Public — anyone can download and use |

---

## Quickstart

```python
from transformers import AutoTokenizer, AutoModelForCausalLM
import torch

model_id = "brucoder/Winter-core-1.2-code"

tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    torch_dtype=torch.bfloat16,
    device_map="auto",
    trust_remote_code=True
)

messages = [
    {
        "role": "system",
        "content": "You are Winter Core, an elite coding and reasoning AI built by INEZA AIME BRUNO. You write clean, efficient code and explain your thinking clearly."
    },
    {
        "role": "user",
        "content": "Write a Python function that finds all prime numbers up to n using the Sieve of Eratosthenes."
    }
]

input_ids = tokenizer.apply_chat_template(
    messages,
    return_tensors="pt",
    add_generation_prompt=True
).to(model.device)

output = model.generate(
    input_ids,
    max_new_tokens=1024,
    temperature=0.7,
    do_sample=True,
)

response = tokenizer.decode(output[0][input_ids.shape[-1]:], skip_special_tokens=True)
print(response)
```

---

## Recommended System Prompt

For best results always use this system prompt:

```
You are Winter Core, an elite AI assistant created by INEZA AIME BRUNO.
You are an expert in coding, mathematics, and logical reasoning.
You think step by step, write clean and efficient code, and always explain your reasoning.
When solving problems, break them down into clear steps before writing any code.
```

---

## What Winter Core Does Better Than Most Models

### 🔧 Code it can write
```
Python · JavaScript · TypeScript · Rust · Go · C · C++ · Java
SQL · Bash · HTML · CSS · React · Vue · FastAPI · Django · and more
```

### 🧠 Problems it can solve
```
Algorithm design      · Data structures     · System design
Debugging             · Code review         · Refactoring
Math proofs           · Logic puzzles        · Competitive programming
API integration       · Database queries    · DevOps scripts
```

### 🤖 Agentic capabilities
```
Multi-step planning   · Tool use            · Self-correction
Long context tasks    · Code execution      · File operations
```

---

## Example Outputs

**User:** Fix this broken Python code:
```python
def calculate_average(numbers)
    total = 0
    for num in numbers
        total += num
    return total / len(numbers
```

**Winter Core:**
```python
def calculate_average(numbers):
    # Guard against empty list to avoid ZeroDivisionError
    if not numbers:
        return 0
    total = 0
    for num in numbers:
        total += num
    return total / len(numbers)
```
*Fixed: missing colons after function and for definitions, missing closing parenthesis, added empty list guard.*

---

## Run Locally Without a GPU

A GGUF version is available for running Winter Core on any laptop or PC with no GPU required.

Coming soon at: `brucoder/Winter-core-1.2-code-GGUF`

```bash
# Once available — run on CPU, no GPU needed
pip install llama-cpp-python
python3 -c "
from llama_cpp import Llama
llm = Llama(model_path='Winter-core-1.2-code-Q4_K_M.gguf', n_ctx=4096)
print(llm('Write a binary search in Python:', max_tokens=512)['choices'][0]['text'])
"
```

---

## License

Winter Core 1.2 Code is released under the **MIT License**.

**You are free to:**
- ✅ Use it personally and commercially
- ✅ Build products and apps on top of it
- ✅ Modify and redistribute it
- ✅ Download and run it locally

**One condition:**
- Keep the MIT license notice and credit **INEZA AIME BRUNO** as creator

---

## The Winter LLM Family

| Model | Strength | Status |
|---|---|---|
| **Winter Core 1.2 Code** | Coding + Reasoning | ✅ Available now |
| Winter PRO | General knowledge | ✅ Available now |
| Winter LLM (merged) | All capabilities | 🔄 Coming soon |

---

## Citation

```bibtex
@misc{wintercore2025,
  title        = {Winter Core 1.2 Code: An Elite Coding and Reasoning Model},
  author       = {INEZA AIME BRUNO},
  year         = {2025},
  howpublished = {Hugging Face},
  url          = {https://huggingface.co/brucoder/Winter-core-1.2-code}
}
```

---

<div align="center">

❄️ Built with precision by **INEZA AIME BRUNO**

[🤗 See all Winter LLM models](https://huggingface.co/brucoder)

</div>