Text Generation
Transformers
Safetensors
qwen3
Generated from Trainer
sft
trl
conversational
text-generation-inference
Instructions to use cs-552-2026-flab/math_model with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cs-552-2026-flab/math_model with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="cs-552-2026-flab/math_model") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("cs-552-2026-flab/math_model") model = AutoModelForCausalLM.from_pretrained("cs-552-2026-flab/math_model", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use cs-552-2026-flab/math_model with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cs-552-2026-flab/math_model" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cs-552-2026-flab/math_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/cs-552-2026-flab/math_model
- SGLang
How to use cs-552-2026-flab/math_model with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "cs-552-2026-flab/math_model" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cs-552-2026-flab/math_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "cs-552-2026-flab/math_model" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cs-552-2026-flab/math_model", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use cs-552-2026-flab/math_model with Docker Model Runner:
docker model run hf.co/cs-552-2026-flab/math_model
Automated MNLP evaluation report (2026-06-11)
#1
by zechen-nlp - opened
This view is limited to 50 files because it contains too many changes. See the raw diff here.
- .gitattributes +0 -1
- EVAL_REPORT.md +96 -0
- README.md +3 -57
- chat_template.jinja +0 -91
- completions/completions_00001.parquet +0 -3
- completions/completions_00002.parquet +0 -3
- completions/completions_00003.parquet +0 -3
- completions/completions_00004.parquet +0 -3
- completions/completions_00005.parquet +0 -3
- completions/completions_00006.parquet +0 -3
- completions/completions_00007.parquet +0 -3
- completions/completions_00008.parquet +0 -3
- completions/completions_00009.parquet +0 -3
- completions/completions_00010.parquet +0 -3
- completions/completions_00011.parquet +0 -3
- completions/completions_00012.parquet +0 -3
- completions/completions_00013.parquet +0 -3
- completions/completions_00014.parquet +0 -3
- completions/completions_00015.parquet +0 -3
- completions/completions_00016.parquet +0 -3
- completions/completions_00017.parquet +0 -3
- completions/completions_00018.parquet +0 -3
- completions/completions_00019.parquet +0 -3
- completions/completions_00020.parquet +0 -3
- completions/completions_00021.parquet +0 -3
- completions/completions_00022.parquet +0 -3
- completions/completions_00023.parquet +0 -3
- completions/completions_00024.parquet +0 -3
- completions/completions_00025.parquet +0 -3
- completions/completions_00026.parquet +0 -3
- completions/completions_00027.parquet +0 -3
- completions/completions_00028.parquet +0 -3
- completions/completions_00029.parquet +0 -3
- completions/completions_00030.parquet +0 -3
- completions/completions_00031.parquet +0 -3
- completions/completions_00032.parquet +0 -3
- completions/completions_00033.parquet +0 -3
- completions/completions_00034.parquet +0 -3
- completions/completions_00035.parquet +0 -3
- completions/completions_00036.parquet +0 -3
- completions/completions_00037.parquet +0 -3
- completions/completions_00038.parquet +0 -3
- completions/completions_00039.parquet +0 -3
- completions/completions_00040.parquet +0 -3
- completions/completions_00041.parquet +0 -3
- completions/completions_00042.parquet +0 -3
- completions/completions_00043.parquet +0 -3
- completions/completions_00044.parquet +0 -3
- completions/completions_00045.parquet +0 -3
- completions/completions_00046.parquet +0 -3
.gitattributes
CHANGED
|
@@ -33,4 +33,3 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
-
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
EVAL_REPORT.md
ADDED
|
@@ -0,0 +1,96 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Automated MNLP evaluation report
|
| 2 |
+
|
| 3 |
+
- **Model repo:** [`cs-552-2026-flab/math_model`](https://huggingface.co/cs-552-2026-flab/math_model)
|
| 4 |
+
- **Owner(s):** group **flab**
|
| 5 |
+
- **Generated at:** 2026-06-11T06:23:10+00:00 (UTC)
|
| 6 |
+
- **Pipeline:** [mnlp-project-ci](https://github.com/eric11eca/mnlp-project-ci)
|
| 7 |
+
|
| 8 |
+
_This PR is opened automatically by the course CI. It is **non-blocking** — you do not need to merge it. The next nightly run will refresh this file._
|
| 9 |
+
|
| 10 |
+
## Evaluated checkpoint
|
| 11 |
+
|
| 12 |
+
- **Commit:** [`19cb971`](https://huggingface.co/cs-552-2026-flab/math_model/commit/19cb971ecbfdfb455c8f90bb6b83cd7921a40c68)
|
| 13 |
+
- **Message:** g2rpo-guided-ds4-8g-ckpt200-tuned-sampling-T0.6-topp1.0-topk-1
|
| 14 |
+
- **Committed:** 2026-06-09T09:22:40+00:00
|
| 15 |
+
|
| 16 |
+
## Summary
|
| 17 |
+
|
| 18 |
+
| Benchmark | Accuracy | Status |
|
| 19 |
+
|---|---:|---|
|
| 20 |
+
| Math | 0.3800 | ok |
|
| 21 |
+
| Knowledge | — | not run |
|
| 22 |
+
| Multilingual | — | not run |
|
| 23 |
+
| Safety | — | not run |
|
| 24 |
+
|
| 25 |
+
## Sample completions
|
| 26 |
+
|
| 27 |
+
_Prompts are intentionally omitted to avoid revealing benchmark contents. For multi-completion problems, only one completion is shown per sample._
|
| 28 |
+
|
| 29 |
+
### Math
|
| 30 |
+
|
| 31 |
+
**Correct** (1 shown)
|
| 32 |
+
|
| 33 |
+
- **reference**: `194`
|
| 34 |
+
- **overall** (5/8 completions correct)
|
| 35 |
+
- **extracted** (✓): `194`
|
| 36 |
+
- **completion**:
|
| 37 |
+
|
| 38 |
+
```text
|
| 39 |
+
<think>
|
| 40 |
+
Okay, so I need to figure out the minimum number of cells to mark in a 194x194 grid so that there's exactly one tiling with dominoes where each domino has at most one marked cell. Hmm. Let me start by understanding the problem better.
|
| 41 |
+
|
| 42 |
+
First, domino tiling of a grid. Each domino is either 1x2 or 2x1. The problem is about placing dominoes such that each domino has at most one marked cell. S
|
| 43 |
+
|
| 44 |
+
... [truncated 822 chars] ...
|
| 45 |
+
|
| 46 |
+
s) to ensure each domino can contain at most one marked cell.
|
| 47 |
+
- The minimal number of marked cells required to force a unique tiling is related to the structure of the grid and the constraints of domino tiling.
|
| 48 |
+
|
| 49 |
+
3. **Smaller Grid Analysis**: For smaller grids like \( 2 \times 2 \) or \( 4 \times 4 \), the minimal number of marked cells needed to force a unique tiling is equal to the number of rows or columns. This suggests a pattern where marking one cell per row (or column) can force a unique tiling.
|
| 50 |
+
|
| 51 |
+
4. **Generalization to \( 194 \times 194 \)**:
|
| 52 |
+
- By marking one cell in each row such that no two marked cells are in the same column, we ensure that each marked cell is part of a vertical domino.
|
| 53 |
+
- This forces vertical dominoes in each column, which are unique due to the marking constraints.
|
| 54 |
+
- The horizontal dominoes can be placed between the marked cells and unmarked cells, but the unique vertical domino placements ensure a unique tiling.
|
| 55 |
+
|
| 56 |
+
5. **Conclusion**: The minimal number of marked cells required is equal to the number of rows (or columns) in the grid. For a \( 194 \times 194 \) grid, this number is 194.
|
| 57 |
+
|
| 58 |
+
Thus, the least positive integer \( k \) is \(\boxed{194}\).
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
+
**Incorrect** (1 shown)
|
| 62 |
+
|
| 63 |
+
- **reference**: `$g(x)=c, g(x)=\lceil x \rceil, g(x)=\lfloor x \rfloor$`
|
| 64 |
+
- **overall** (0/8 completions correct)
|
| 65 |
+
- **extracted** (✗): `h(x) = c`
|
| 66 |
+
- **completion**:
|
| 67 |
+
|
| 68 |
+
```text
|
| 69 |
+
<think>
|
| 70 |
+
Okay, let's try to tackle this problem. So, we need to find all functions \( h: \mathbb{Q} \to \mathbb{Z} \) such that for every \( x \in \mathbb{Q} \), every integer \( a \), and every positive integer \( b \), the equation \( h(x) = h\left( \frac{h(bx - a) + a}{b} \right) \) holds. Hmm, that's a mouthful. Let me break it down.
|
| 71 |
+
|
| 72 |
+
First, let's parse the equation. For any rational number \(
|
| 73 |
+
|
| 74 |
+
... [truncated 823 chars] ...
|
| 75 |
+
|
| 76 |
+
d properties of the function \( h \).
|
| 77 |
+
|
| 78 |
+
1. **Constant Functions**:
|
| 79 |
+
- Suppose \( h(x) = c \) for some constant \( c \in \mathbb{Z} \). Substituting this into the equation, we get:
|
| 80 |
+
\[
|
| 81 |
+
h(x) = h\left( \frac{c + a}{b} \right) = c,
|
| 82 |
+
\]
|
| 83 |
+
which is always true. Thus, constant functions are solutions.
|
| 84 |
+
|
| 85 |
+
2. **Non-Constant Functions**:
|
| 86 |
+
- If \( h \) were non-constant, there would exist \( x_1 \) and \( x_2 \) such that \( h(x_1) \neq h(x_2) \). Using the given functional equation, we can derive that \( h(x) \) must be constant for all \( x \). Specifically, setting \( x = 0 \) and analyzing the resulting equation shows that \( h \) must be constant everywhere.
|
| 87 |
+
|
| 88 |
+
3. **Key Insight**:
|
| 89 |
+
- By setting \( x = 0 \) and considering the equation for all \( a \) and \( b \), we find that \( h(0) \) must equal \( h\left( \frac{h(-a) + a}{b} \right) \). This implies that \( h \) must be constant on the set of all rational numbers of the form \( \frac{c}{b} \), which is dense in \( \mathbb{Q} \). Therefore, \( h \) must be constant everywhere.
|
| 90 |
+
|
| 91 |
+
Thus, the only solutions are constant functions. The final answer is:
|
| 92 |
+
|
| 93 |
+
\[
|
| 94 |
+
\boxed{h(x) = c} \text{ where } c \text{ is an integer constant.}
|
| 95 |
+
\]
|
| 96 |
+
```
|
README.md
CHANGED
|
@@ -1,57 +1,3 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
tags:
|
| 5 |
-
- generated_from_trainer
|
| 6 |
-
- sft
|
| 7 |
-
- trl
|
| 8 |
-
licence: license
|
| 9 |
-
---
|
| 10 |
-
|
| 11 |
-
# Model Card for 20260529_093919
|
| 12 |
-
|
| 13 |
-
This model is a fine-tuned version of [None](https://huggingface.co/None).
|
| 14 |
-
It has been trained using [TRL](https://github.com/huggingface/trl).
|
| 15 |
-
|
| 16 |
-
## Quick start
|
| 17 |
-
|
| 18 |
-
```python
|
| 19 |
-
from transformers import pipeline
|
| 20 |
-
|
| 21 |
-
question = "If you had a time machine, but could only go to the past or the future once and never return, which would you choose and why?"
|
| 22 |
-
generator = pipeline("text-generation", model="None", device="cuda")
|
| 23 |
-
output = generator([{"role": "user", "content": question}], max_new_tokens=128, return_full_text=False)[0]
|
| 24 |
-
print(output["generated_text"])
|
| 25 |
-
```
|
| 26 |
-
|
| 27 |
-
## Training procedure
|
| 28 |
-
|
| 29 |
-
[<img src="https://raw.githubusercontent.com/wandb/assets/main/wandb-github-badge-28.svg" alt="Visualize in Weights & Biases" width="150" height="24"/>](https://wandb.ai/cs-552-2026-flab/flab-cs552/runs/cwg4aje3)
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
This model was trained with SFT.
|
| 34 |
-
|
| 35 |
-
### Framework versions
|
| 36 |
-
|
| 37 |
-
- TRL: 1.3.0
|
| 38 |
-
- Transformers: 5.7.0
|
| 39 |
-
- Pytorch: 2.10.0+cu128
|
| 40 |
-
- Datasets: 4.8.5
|
| 41 |
-
- Tokenizers: 0.22.2
|
| 42 |
-
|
| 43 |
-
## Citations
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
|
| 47 |
-
Cite TRL as:
|
| 48 |
-
|
| 49 |
-
```bibtex
|
| 50 |
-
@software{vonwerra2020trl,
|
| 51 |
-
title = {{TRL: Transformers Reinforcement Learning}},
|
| 52 |
-
author = {von Werra, Leandro and Belkada, Younes and Tunstall, Lewis and Beeching, Edward and Thrush, Tristan and Lambert, Nathan and Huang, Shengyi and Rasul, Kashif and Gallouédec, Quentin},
|
| 53 |
-
license = {Apache-2.0},
|
| 54 |
-
url = {https://github.com/huggingface/trl},
|
| 55 |
-
year = {2020}
|
| 56 |
-
}
|
| 57 |
-
```
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: apache-2.0
|
| 3 |
+
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
chat_template.jinja
DELETED
|
@@ -1,91 +0,0 @@
|
|
| 1 |
-
{%- set enable_thinking = true %}
|
| 2 |
-
{%- set flab_boxed_instruction = "You are an expert mathematician. Reason carefully and rigorously: recall the relevant definitions and theorems, try small cases or sanity checks, and verify each step before continuing. When you reach the answer, state it on its own line as \\boxed{...}. The grader reads ONLY the contents of the LAST \\boxed{} in your response, so your final answer must appear there, complete and simplified." %}
|
| 3 |
-
{%- if flab_boxed_instruction %}{{ '<|im_start|>system\n' + flab_boxed_instruction + '<|im_end|>\n' }}{%- endif %}{%- if tools %}
|
| 4 |
-
{{- '<|im_start|>system\n' }}
|
| 5 |
-
{%- if messages[0].role == 'system' %}
|
| 6 |
-
{{- messages[0].content + '\n\n' }}
|
| 7 |
-
{%- endif %}
|
| 8 |
-
{{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 9 |
-
{%- for tool in tools %}
|
| 10 |
-
{{- "\n" }}
|
| 11 |
-
{{- tool | tojson }}
|
| 12 |
-
{%- endfor %}
|
| 13 |
-
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 14 |
-
{%- else %}
|
| 15 |
-
{%- if messages[0].role == 'system' %}
|
| 16 |
-
{{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
|
| 17 |
-
{%- endif %}
|
| 18 |
-
{%- endif %}
|
| 19 |
-
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 20 |
-
{%- for message in messages[::-1] %}
|
| 21 |
-
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 22 |
-
{%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
|
| 23 |
-
{%- set ns.multi_step_tool = false %}
|
| 24 |
-
{%- set ns.last_query_index = index %}
|
| 25 |
-
{%- endif %}
|
| 26 |
-
{%- endfor %}
|
| 27 |
-
{%- for message in messages %}
|
| 28 |
-
{%- if message.content is string %}
|
| 29 |
-
{%- set content = message.content %}
|
| 30 |
-
{%- else %}
|
| 31 |
-
{%- set content = '' %}
|
| 32 |
-
{%- endif %}
|
| 33 |
-
{%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
|
| 34 |
-
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 35 |
-
{%- elif message.role == "assistant" %}
|
| 36 |
-
{%- set reasoning_content = '' %}
|
| 37 |
-
{%- if message.reasoning_content is string %}
|
| 38 |
-
{%- set reasoning_content = message.reasoning_content %}
|
| 39 |
-
{%- else %}
|
| 40 |
-
{%- if '</think>' in content %}
|
| 41 |
-
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 42 |
-
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 43 |
-
{%- endif %}
|
| 44 |
-
{%- endif %}
|
| 45 |
-
{%- if loop.index0 > ns.last_query_index %}
|
| 46 |
-
{%- if loop.last or (not loop.last and reasoning_content) %}
|
| 47 |
-
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
|
| 48 |
-
{%- else %}
|
| 49 |
-
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 50 |
-
{%- endif %}
|
| 51 |
-
{%- else %}
|
| 52 |
-
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 53 |
-
{%- endif %}
|
| 54 |
-
{%- if message.tool_calls %}
|
| 55 |
-
{%- for tool_call in message.tool_calls %}
|
| 56 |
-
{%- if (loop.first and content) or (not loop.first) %}
|
| 57 |
-
{{- '\n' }}
|
| 58 |
-
{%- endif %}
|
| 59 |
-
{%- if tool_call.function %}
|
| 60 |
-
{%- set tool_call = tool_call.function %}
|
| 61 |
-
{%- endif %}
|
| 62 |
-
{{- '<tool_call>\n{"name": "' }}
|
| 63 |
-
{{- tool_call.name }}
|
| 64 |
-
{{- '", "arguments": ' }}
|
| 65 |
-
{%- if tool_call.arguments is string %}
|
| 66 |
-
{{- tool_call.arguments }}
|
| 67 |
-
{%- else %}
|
| 68 |
-
{{- tool_call.arguments | tojson }}
|
| 69 |
-
{%- endif %}
|
| 70 |
-
{{- '}\n</tool_call>' }}
|
| 71 |
-
{%- endfor %}
|
| 72 |
-
{%- endif %}
|
| 73 |
-
{{- '<|im_end|>\n' }}
|
| 74 |
-
{%- elif message.role == "tool" %}
|
| 75 |
-
{%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
|
| 76 |
-
{{- '<|im_start|>user' }}
|
| 77 |
-
{%- endif %}
|
| 78 |
-
{{- '\n<tool_response>\n' }}
|
| 79 |
-
{{- content }}
|
| 80 |
-
{{- '\n</tool_response>' }}
|
| 81 |
-
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 82 |
-
{{- '<|im_end|>\n' }}
|
| 83 |
-
{%- endif %}
|
| 84 |
-
{%- endif %}
|
| 85 |
-
{%- endfor %}
|
| 86 |
-
{%- if add_generation_prompt %}
|
| 87 |
-
{{- '<|im_start|>assistant\n' }}
|
| 88 |
-
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 89 |
-
{{- '<think>\n\n</think>\n\n' }}
|
| 90 |
-
{%- endif %}
|
| 91 |
-
{%- endif %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00001.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:f6be364352a9089981f9fec6118939e8afd83700f4b47680d338f55a7d4bd567
|
| 3 |
-
size 185867
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00002.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:bc32dac308471db150ee75a3cd566549e265a50f758dbe8bb635eafbc7163887
|
| 3 |
-
size 99403
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00003.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e4b3590d7f4f7bd3df54915fda0a993fb6722c3e471b66cf0d4b1600189dea86
|
| 3 |
-
size 92470
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00004.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:2812ea7b083398d4d5f62fbc34932a60a931efc408a19193f4363d2368115677
|
| 3 |
-
size 87440
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00005.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:3063a9f56c99ca95decd174d718eafaf1a2be6742a902fc4062d3ffb59d7c7f0
|
| 3 |
-
size 130955
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00006.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:1bb6e8d16cebfa160563a98ea2dc927c3fa8893b26cf8bf772f3de85ba35b726
|
| 3 |
-
size 81139
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00007.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:64ea5fe94ae52d2092b0c44ba5a7311eaf2d321748a22f4dd3fdfdd3cb485c40
|
| 3 |
-
size 202224
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00008.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:06b40db60bddb173d482b4d4c8b020af2b1c381ad3b5498d16959b9069b78cc2
|
| 3 |
-
size 91417
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00009.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:51f6ad7b624d3fa3e0a52cfdcb12b810c1ff1016e02385f8bc4d1b3196b217a1
|
| 3 |
-
size 169824
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00010.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ae8c3a0b29e9a10de7b1e1c0bdc5e0a8b35bc2f169c6f90b1713ddbd313d521b
|
| 3 |
-
size 96383
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00011.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:27bed05dc4f8cd49ec2a3ce896e320f54fb2867fae6ba450ee2a93c92f9688f3
|
| 3 |
-
size 81976
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00012.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:007eaf5fc077fc2fd9b3fe7569db1252b76e84fd9a2d9e26bc0e6d56bb4d4c31
|
| 3 |
-
size 133298
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00013.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:099bc0a7fb333def5703c77300cdb2ccd9a2f4e4d8819d5bff3f9a988cfe950c
|
| 3 |
-
size 93140
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00014.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:053cd354371a476a3212829bf13553297a7380351521f82257b83c2dc64c8ac0
|
| 3 |
-
size 119536
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00015.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:3f14fd480b3bf89ea5b8990e7fabb2962b0e59a8cc745c97076d80df018a59e2
|
| 3 |
-
size 104520
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00016.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:578ea0eff571612832bf0ec78cf11e39b92fa549e42dcdf72ecc6612972ddff5
|
| 3 |
-
size 79169
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00017.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:213d1ecb25833627c135b61d7718fd2de2aba8ea55aa5e472ab06513aa1d5931
|
| 3 |
-
size 62960
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00018.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:85dc5381314434c9b9bd186ff0b4e14711b265a4e8466314eb9963b54511fec3
|
| 3 |
-
size 157319
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00019.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:5ed10b00be237d5830ec9d04c9bb28be637b66221c7c5b70f662195e22390be1
|
| 3 |
-
size 71138
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00020.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:dcef2b31c8d9467fec7908dd7a1f09e36d7bc5a84888dcb56217dee34c176dbf
|
| 3 |
-
size 197317
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00021.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:b6819ebb85fe16437d0037a536abf329bfe7e79868843d46f52fd596b240d0d4
|
| 3 |
-
size 141682
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00022.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d721e852b2bb2bf01ec5b513f8c74be38157cf11dfdefdacb34e136298f57188
|
| 3 |
-
size 123491
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00023.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ba8f3348664c65a4d7dbdf96325fcb803720fa50f718d2bfa319437960ca1d39
|
| 3 |
-
size 122864
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00024.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:c8fbdddffc9acb1411b22d900cb49be468286c82798d62ae8fc583a4c0ec1ba5
|
| 3 |
-
size 112258
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00025.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ef1f52a5539eec3bbddc01559fe9ab40b747c7b9730e6594c10f71cf84f011f0
|
| 3 |
-
size 61162
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00026.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:53dbd50ebefd29a5f8f2732aec8941f6a8fe779e4b097f9b9e56676d24ddbbd2
|
| 3 |
-
size 73280
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00027.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:02dc5b03893df9a80d0810a373bb4bcdc1ccc510e46f5dacd75292cffed4cd4e
|
| 3 |
-
size 106272
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00028.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:fc3678aabc72de61722fc02d1cc19d3918734a2f7ab853205abff62f7cfe5d94
|
| 3 |
-
size 99352
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00029.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:9bee4d54aea341c68e0bba4f7c688e829fc6e915f503e92bb406a39ccec3f747
|
| 3 |
-
size 109502
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00030.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:96e9738421aa2d46cfb87f53770f561f5f5a928465bfe634a07b9e97eecac825
|
| 3 |
-
size 114211
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00031.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:01f050ffbdf5fa54031101896e00ce0b34793a0752850fc258359afae7e483f1
|
| 3 |
-
size 59562
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00032.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e3cbeac19f5d10166d8a803cd2b6d2e61a6a9397d4b24bb25bb00796cccce5e4
|
| 3 |
-
size 128485
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00033.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:aaa73bcd6ff87464b78d5ca1dfda1d5017551caa6ff653ec1469fa14590eebcb
|
| 3 |
-
size 107557
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00034.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:ca55821f7f8eed98312c895cadcc31c3429ce84dfa451d571d83f3f58ed3d313
|
| 3 |
-
size 109354
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00035.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:8bc0f0d214395ac605a871ed69f08296ba177f0387de786c8c1fa1c1583f9f25
|
| 3 |
-
size 70236
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00036.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:150e0f1eeb4934eb427050e2cc7b53b8828e143f39e40ce993babd24dca38c12
|
| 3 |
-
size 55458
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00037.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:234f7633bba9674a0324729326dc4e7fcabe881d4b6fb73af1fb28962dbac26b
|
| 3 |
-
size 86243
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00038.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:7d59c3e43abd1e866ce9f1348804bd86eda62fe38e09f3f05cc66eb4e6d5420b
|
| 3 |
-
size 155854
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00039.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:e467ca004028d8ff54f72fdb73be2e0e8f7c6578084564ac9c5e3fe4c2c735a9
|
| 3 |
-
size 176351
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00040.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:89fe088636c01f9cb4de1fddaa75042bc86c81005e2f7ac4b257b68f85d14250
|
| 3 |
-
size 67041
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00041.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:69964811b7b7d42efd0b5e54abb1d25a1cfbe227ceab33148acc647d2a13c1ba
|
| 3 |
-
size 72313
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00042.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:6b2f32d584b699cd2a55298eca086a0c08a3ca0f5478d289b907f16bf7ef1566
|
| 3 |
-
size 125863
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00043.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:5697004c83ca584c0248bbfbed9e2cf5b7948010cc21191c456231c8dd8d5308
|
| 3 |
-
size 84350
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00044.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:d4782dbfa6749fa3fedcf9077956a66f5aa4133b2b8af825cc7e10b3ae12482a
|
| 3 |
-
size 78064
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00045.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:7209b37bada45c1f64f73116bc742ee8f5ab408b1c8671f389220314da0e5617
|
| 3 |
-
size 143317
|
|
|
|
|
|
|
|
|
|
|
|
completions/completions_00046.parquet
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:102f34cab49ff28fd5b67953c76985fc1e13bf24c11ebcf7dbdd3f559d32d892
|
| 3 |
-
size 64131
|
|
|
|
|
|
|
|
|
|
|
|