Datasets:
text stringlengths 0 86 |
|---|
Apache License |
Version 2.0, January 2004 |
http://www.apache.org/licenses/ |
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION |
1. Definitions. |
"License" shall mean the terms and conditions for use, reproduction, |
and distribution as defined by Sections 1 through 9 of this document. |
"Licensor" shall mean the copyright owner or entity authorized by |
the copyright owner that is granting the License. |
"Legal Entity" shall mean the union of the acting entity and all |
other entities that control, are controlled by, or are under common |
control with that entity. For the purposes of this definition, |
"control" means (i) the power, direct or indirect, to cause the |
direction or management of such entity, whether by contract or |
otherwise, or (ii) ownership of fifty percent (50%) or more of the |
outstanding shares, or (iii) beneficial ownership of such entity. |
"You" (or "Your") shall mean an individual or Legal Entity |
exercising permissions granted by this License. |
"Source" form shall mean the preferred form for making modifications, |
including but not limited to software source code, documentation |
source, and configuration files. |
"Object" form shall mean any form resulting from mechanical |
transformation or translation of a Source form, including but |
not limited to compiled object code, generated documentation, |
and conversions to other media types. |
"Work" shall mean the work of authorship, whether in Source or |
Object form, made available under the License, as indicated by a |
copyright notice that is included in or attached to the work |
(an example is provided in the Appendix below). |
"Derivative Works" shall mean any work, whether in Source or Object |
form, that is based on (or derived from) the Work and for which the |
editorial revisions, annotations, elaborations, or other modifications |
represent, as a whole, an original work of authorship. For the purposes |
of this License, Derivative Works shall not include works that remain |
separable from, or merely link (or bind by name) to the interfaces of, |
the Work and Derivative Works thereof. |
"Contribution" shall mean any work of authorship, including |
the original version of the Work and any modifications or additions |
to that Work or Derivative Works thereof, that is intentionally |
submitted to Licensor for inclusion in the Work by the copyright owner |
or by an individual or Legal Entity authorized to submit on behalf of |
the copyright owner. For the purposes of this definition, "submitted" |
means any form of electronic, verbal, or written communication sent |
to the Licensor or its representatives, including but not limited to |
communication on electronic mailing lists, source code control systems, |
and issue tracking systems that are managed by, or on behalf of, the |
Licensor for the purpose of discussing and improving the Work, but |
excluding communication that is conspicuously marked or otherwise |
designated in writing by the copyright owner as "Not a Contribution." |
"Contributor" shall mean Licensor and any individual or Legal Entity |
on behalf of whom a Contribution has been received by Licensor and |
subsequently incorporated within the Work. |
2. Grant of Copyright License. Subject to the terms and conditions of |
this License, each Contributor hereby grants to You a perpetual, |
worldwide, non-exclusive, no-charge, royalty-free, irrevocable |
copyright license to reproduce, prepare Derivative Works of, |
publicly display, publicly perform, sublicense, and distribute the |
Work and such Derivative Works in Source or Object form. |
3. Grant of Patent License. Subject to the terms and conditions of |
this License, each Contributor hereby grants to You a perpetual, |
worldwide, non-exclusive, no-charge, royalty-free, irrevocable |
(except as stated in this section) patent license to make, have made, |
use, offer to sell, sell, import, and otherwise transfer the Work, |
where such license applies only to those patent claims licensable |
by such Contributor that are necessarily infringed by their |
Contribution(s) alone or by combination of their Contribution(s) |
with the Work to which such Contribution(s) was submitted. If You |
institute patent litigation against any entity (including a |
cross-claim or counterclaim in a lawsuit) alleging that the Work |
or a Contribution incorporated within the Work constitutes direct |
or contributory patent infringement, then any patent licenses |
granted to You under this License for that Work shall terminate |
as of the date such litigation is filed. |
4. Redistribution. You may reproduce and distribute copies of the |
Work or Derivative Works thereof in any medium, with or without |
modifications, and in Source or Object form, provided that You |
meet the following conditions: |
(a) You must give any other recipients of the Work or |
Derivative Works a copy of this License; and |
(b) You must cause any modified files to carry prominent notices |
stating that You changed the files; and |
(c) You must retain, in the Source form of any Derivative Works |
End of preview. Expand in Data Studio
ASTRA RLVR Dataset
RLVR Dataset released by ASTRA: Automated Synthesis of agentic Trajectories and Reinforcement Arenas. The RLVR data is designed for training/evaluating tool use + multi-step reasoning with verifiable rewards in executable environments.
1. Dataset Overview
- RLVR environments (Environment Synthesis): starting from QA pairs, we automatically decompose a main question into sub-questions and generate an executable tool environment (tool documentation / call statements / code) for sub-questions that require tools. We then perform rule-based and sandbox-execution verification to filter for verifiable samples.
2. Data Construction Pipeline
- Start from QA / knowledge sources: Generate a main question and construct a multi-hop decomposition trajectory.
- Decide tool needs + score verification: For each sub-question, determine whether tools are required and compute multi-dimensional verification scores (often using a P90 threshold to select high-quality samples).
- Auto-generate and execute for tool-required sub-questions: Automatically generate tool documentation, call statements, and executable code, then run sandbox execution for verifiable filtering.
- Cluster and merge similar tools: Group tools with similar intents and merge them where appropriate. Re-run sandbox validation to ensure executability and verifiability.
3. Data Formats and Field Definitions
Each sample is a JSON object. Common top-level fields include:
prompt: the dialog prompt (usually two messages: system + user)synthetic_env_tool_schema: tool schema (string; JSON-serialized OpenAI tools/function schema list)synthetic_env_tool_dict: tool implementation (string; JSON-serialized dict)- After deserialization:
{tool_name: python_code_string, ...}
- After deserialization:
synthetic_env_sub_qa_dict_for_verify: verification assertions (string; JSON-serialized dict)- After deserialization:
{tool_name: [expected_substrings...], ...}used for sandbox validation (e.g., check whethertool_call_anscontains expected answer snippets)
- After deserialization:
synthetic_env_sub_qa_dict: a simplified version of sub-question answers/constraints (similar to the verify version; varies by release)- Others: meta fields such as
ability,agent_name,extra_info, etc.
Note: the field
synthetic_env_sub_qa_rewardmay be empty in some versions (kept for future extensions such as process-level rewards / rule signals).
4. Usage (HuggingFace Datasets)
import json
from datasets import load_dataset
ds = load_dataset("TODO/astra_rlvr", "rlvr_envs", split="train")
ex = ds[0]
tools_schema = json.loads(ex["synthetic_env_tool_schema"]) # list[dict]
tool_code_map = json.loads(ex["synthetic_env_tool_dict"]) # dict[str, str]
verify_map = json.loads(ex["synthetic_env_sub_qa_dict_for_verify"]) # dict[str, list[str]]
5. Disclaimer
- Non-endorsement & liability disclaimer: The dataset content is provided for research and educational purposes only. It does not reflect the views, interests, beliefs, or endorsements of any individual or organization, and should not be interpreted as making claims about any group. The project maintainers disclaim responsibility for any direct or indirect harm or damages arising from the use or misuse of the dataset or related resources.
- Partial release due to policy constraints: Due to company policies and compliance requirements, only a subset of the full dataset is publicly released, which may limit coverage and representativeness.
6. Citation
@misc{astra2026,
title={ASTRA: Automated Synthesis of agentic Trajectories and Reinforcement Arenas},
author={Beike Language and Intelligence (BLI)},
year={2026}
}
- Downloads last month
- 43
