Add library_name, pipeline_tag and arxiv metadata
Browse filesThis PR improves the model card for ASTRA-14B-Thinking-v1 by adding relevant metadata to the YAML header. Specifically, it adds:
- `library_name: transformers`: To ensure the model is correctly identified and to enable the "Use in Transformers" button.
- `pipeline_tag: text-generation`: To categorize the model correctly on the Hub.
- `arxiv: 2601.21558`: To link the model repository to its research paper.
- Relevant task tags like `agent` and `tool-use`.
The description has also been slightly updated to reference the research paper.
README.md
CHANGED
|
@@ -1,7 +1,14 @@
|
|
| 1 |
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
base_model:
|
| 4 |
- Qwen/Qwen3-14B
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
[](https://github.com/LianjiaTech/astra)
|
|
@@ -12,7 +19,9 @@ base_model:
|
|
| 12 |
|
| 13 |
## Model Description
|
| 14 |
|
| 15 |
-
The **ASTRA-14B-Thinking-v1** model is derived from [**Qwen3-14B**](https://huggingface.co/Qwen/Qwen3-14B) and specifically optimized for multi-step, tool-augmented tasks, with enhanced agentic capabilities in complex tool use and structured reasoning.
|
|
|
|
|
|
|
| 16 |
|
| 17 |
We also provide a **32B** variant [**ASTRA-32B-Thinking-v1**](https://huggingface.co/Emperorizzis/ASTRAL-32B-Thinking-v1).
|
| 18 |
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
base_model:
|
| 3 |
- Qwen/Qwen3-14B
|
| 4 |
+
license: apache-2.0
|
| 5 |
+
library_name: transformers
|
| 6 |
+
pipeline_tag: text-generation
|
| 7 |
+
arxiv: 2601.21558
|
| 8 |
+
tags:
|
| 9 |
+
- tool-use
|
| 10 |
+
- agent
|
| 11 |
+
- reinforcement-learning
|
| 12 |
---
|
| 13 |
|
| 14 |
[](https://github.com/LianjiaTech/astra)
|
|
|
|
| 19 |
|
| 20 |
## Model Description
|
| 21 |
|
| 22 |
+
The **ASTRA-14B-Thinking-v1** model is derived from [**Qwen3-14B**](https://huggingface.co/Qwen/Qwen3-14B) and specifically optimized for multi-step, tool-augmented tasks, with enhanced agentic capabilities in complex tool use and structured reasoning.
|
| 23 |
+
|
| 24 |
+
This model was introduced in the paper [ASTRA: Automated Synthesis of agentic Trajectories and Reinforcement Arenas](https://huggingface.co/papers/2601.21558). ASTRA is a fully automated end-to-end framework for training tool-augmented language model agents via scalable data synthesis and verifiable reinforcement learning.
|
| 25 |
|
| 26 |
We also provide a **32B** variant [**ASTRA-32B-Thinking-v1**](https://huggingface.co/Emperorizzis/ASTRAL-32B-Thinking-v1).
|
| 27 |
|