nielsr HF Staff commited on
Commit
07c6642
·
verified ·
1 Parent(s): 3a4c2e6

Add library_name to metadata

Browse files

Hi! I'm Niels from the community science team at Hugging Face.

I've opened this PR to add `library_name: transformers` to the model card metadata. This is based on the usage examples provided in your README, which demonstrate how to load and use the model using the Transformers library. Adding this metadata helps the Hugging Face Hub categorize the model correctly and enables the "Use in Transformers" button on the model page.

Files changed (1) hide show
  1. README.md +21 -12
README.md CHANGED
@@ -1,17 +1,18 @@
1
  ---
2
- license: apache-2.0
 
 
3
  language:
4
  - en
 
 
 
5
  tags:
6
  - code
7
  - tool-output
8
  - pruning
9
  - coding-agents
10
  - extraction
11
- datasets:
12
- - KRLabsOrg/tool-output-extraction-swebench
13
- base_model: Qwen/Qwen3.5-2B
14
- pipeline_tag: text-generation
15
  thumbnail: https://raw.githubusercontent.com/KRLabsOrg/squeez/main/assets/squeez_mascot.png
16
  ---
17
 
@@ -115,11 +116,18 @@ messages = [
115
  "Do not rewrite, summarize, or invent lines."
116
  )},
117
  {"role": "user", "content": (
118
- "<query>\nFind the failing authentication test\n</query>\n"
119
- "<tool_output>\n"
120
- "PASSED tests/test_login.py::test_valid_credentials\n"
121
- "FAILED tests/test_login.py::test_token_refresh - AssertionError: expected 200 got 401\n"
122
- "PASSED tests/test_login.py::test_logout\n"
 
 
 
 
 
 
 
123
  "</tool_output>"
124
  )},
125
  ]
@@ -141,7 +149,8 @@ print(response)
141
 
142
  **Input** — Chat messages with system prompt:
143
  - System: extraction instructions (see above)
144
- - User: `<query>{task}</query>\n<tool_output>{raw_output}</tool_output>`
 
145
 
146
  **Output** — Verbatim lines in XML tags:
147
  ```
@@ -205,4 +214,4 @@ Apache 2.0
205
  primaryClass={cs.SE},
206
  url={https://arxiv.org/abs/2604.04979},
207
  }
208
- ```
 
1
  ---
2
+ base_model: Qwen/Qwen3.5-2B
3
+ datasets:
4
+ - KRLabsOrg/tool-output-extraction-swebench
5
  language:
6
  - en
7
+ license: apache-2.0
8
+ pipeline_tag: text-generation
9
+ library_name: transformers
10
  tags:
11
  - code
12
  - tool-output
13
  - pruning
14
  - coding-agents
15
  - extraction
 
 
 
 
16
  thumbnail: https://raw.githubusercontent.com/KRLabsOrg/squeez/main/assets/squeez_mascot.png
17
  ---
18
 
 
116
  "Do not rewrite, summarize, or invent lines."
117
  )},
118
  {"role": "user", "content": (
119
+ "<query>
120
+ Find the failing authentication test
121
+ </query>
122
+ "
123
+ "<tool_output>
124
+ "
125
+ "PASSED tests/test_login.py::test_valid_credentials
126
+ "
127
+ "FAILED tests/test_login.py::test_token_refresh - AssertionError: expected 200 got 401
128
+ "
129
+ "PASSED tests/test_login.py::test_logout
130
+ "
131
  "</tool_output>"
132
  )},
133
  ]
 
149
 
150
  **Input** — Chat messages with system prompt:
151
  - System: extraction instructions (see above)
152
+ - User: `<query>{task}</query>
153
+ <tool_output>{raw_output}</tool_output>`
154
 
155
  **Output** — Verbatim lines in XML tags:
156
  ```
 
214
  primaryClass={cs.SE},
215
  url={https://arxiv.org/abs/2604.04979},
216
  }
217
+ ```