Skip to content

Commit 86bd536

Browse files
chore: update pre-commit prompt-suites path and fix typo in reasoning prompt
1 parent d3ef109 commit 86bd536

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ repos:
5353
- |
5454
import json, sys, pathlib
5555
errors = []
56-
for f in pathlib.Path('prompt-suites').glob('*.jsonl'):
56+
for f in pathlib.Path('src/infer_check/prompt-suites').glob('*.jsonl'):
5757
for i, line in enumerate(f.read_text().splitlines(), 1):
5858
if not line.strip():
5959
continue

src/infer_check/prompt_suites/reasoning.jsonl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
{"text": "Five pirates find 100 gold coins. They have a strict seniority order and vote on proposals. The most senior proposes a split. If at least half accept, it's done. Otherwise, that pirate is thrown overboard and the next proposes. Each pirate is rational and wants to maximize their coins (and survive). What does the most senior pirate propose?", "category": "logic", "max_tokens": 1024}
7878
{"text": "A cylindrical can has volume 1000 cm³. What radius and height minimize the surface area? Solve using calculus.", "category": "chain_of_thought", "max_tokens": 512}
7979
{"text": "What is the probability of getting a sum of exactly 15 when rolling four fair six-sided dice?", "category": "chain_of_thought", "max_tokens": 512}
80-
{"text": "A invest $5000 at 6% annual interest compounded quarterly. B invests $5000 at 5.9% compounded continuously. After 10 years, who has more money and by how much?", "category": "word_problem", "max_tokens": 512}
80+
{"text": "A invests $5000 at 6% annual interest compounded quarterly. B invests $5000 at 5.9% compounded continuously. After 10 years, who has more money and by how much?", "category": "word_problem", "max_tokens": 512}
8181
{"text": "How many ways can 8 rooks be placed on an 8x8 chessboard such that no two attack each other?", "category": "chain_of_thought", "max_tokens": 256}
8282
{"text": "You're on a game show. Behind one of three doors is a car. You pick door 1. The host, who knows what's behind each door, opens door 3, revealing a goat. He offers you the chance to switch to door 2. What if there were 100 doors and the host opens 98 goat doors? Should you switch? Explain the generalized probability.", "category": "logic", "max_tokens": 512}
8383
{"text": "Simplify: (2 + 3i)(4 - i) + (1 + 2i)^2. Express in the form a + bi.", "category": "arithmetic", "max_tokens": 256}

0 commit comments

Comments
 (0)