SECQUE

API Endpoint
Leaderboard
Loading leaderboard...
Implementation of
README

SecQue

OpenReward Environment Hugging Face Dataset

Description

SecQue is an environment for evaluating financial analysis capabilities on SEC filings. It contains 565 expert-written questions covering comparison analysis, ratio calculation, risk assessment, and financial insight generation. Agents receive questions with relevant SEC filing context and must provide detailed analytical answers.

Capabilities

  • Financial document analysis
  • SEC filing interpretation
  • Ratio calculation and comparison analysis
  • Risk assessment and financial insight generation

Compute Requirements

Agents are given a standard environment with no sandbox or file system access.

License

MIT.

Tasks

There is one split in this environment:

  • test: 565 tasks

Questions cover companies including Discover Financial Services, NextEra Energy, Apple Inc., and NVIDIA. Context is provided as markdown-formatted SEC filing excerpts.

Reward Structure

This is a single-turn environment. The agent submits an answer via the answer tool. An LLM grader (gpt-5-mini) evaluates the response against expert reference answers, allowing for reasonable numerical rounding and minor formatting variations. Reward is binary: 1.0 if correct, 0.0 if incorrect.

Data

Data consists of a Parquet file (secque.parquet) sourced from HuggingFace nogabenyoash/SecQue. Each row contains a question, SEC filing context in markdown format, and expert reference answer. Data is stored on the OpenReward platform.

Tools

ToolDescription
answerSubmit your detailed financial analysis answer. Ends the episode.

Time Horizon

Single-turn. The agent reads the question and SEC filing context, then submits one answer.

Environment Difficulty

Model performance on SECQUE:

ModelAccuracy
GPT-4o69%
Llama-3.3-70B-Instruct65%
GPT-4o-mini64%
Qwen2.5-32B-Instruct61%
Phi-456%
Meta-Llama-3.1-8B-Instruct48%

Ratio analysis and analyst insights are the most challenging categories, requiring complex numerical reasoning combined with financial understanding.

Other Environment Requirements

OpenAI API key required for LLM-based grading. Pass via secrets={"openai_api_key": "..."}.

Safety

Agents in SecQue analyze SEC filings in a standard environment. The environment does not present direct safety risks.

Citation

@article{benyoash2025secque,
  title={SECQUE: A Benchmark for Evaluating Real-World Financial Analysis Capabilities},
  author={Ben Yoash, Noga and Brief, Meni and Ovadia, Oded and Levin-Schwartz, Yael and Eldan, Ronen},
  journal={arXiv preprint arXiv:2504.04596},
  year={2025}
}
GeneralReasoning/SECQUE | OpenReward