server-inference push seekbench

This commit is contained in:
2026-04-23 23:07:10 -07:00
parent 9cbeca1b30
commit 7ee0d9d412
3 changed files with 108 additions and 1 deletions

View File

@@ -1,2 +1,5 @@
# seekbench
---
{}
---
# seekbench

56
config.json Normal file
View File

@@ -0,0 +1,56 @@
{
"model": null,
"signature": {
"description": "Given question + traces, classify whether the current reasoning is grounded. As you reason, note any uncertainties, ambiguities, and gaps \u2014 both in how the instructions apply to the task at hand and in whether you have the knowledge needed to solve it. Be honest in your reasoning when you are unsure about your answer.",
"properties": {
"question": {
"__dspy_field_type": "input",
"desc": "Original question.",
"prefix": "Question:",
"title": "Question",
"type": "string"
},
"previous_traces": {
"__dspy_field_type": "input",
"desc": "All previous traces before the current reasoning trace.",
"prefix": "Previous Traces:",
"title": "Previous Traces",
"type": "string"
},
"current_trace": {
"__dspy_field_type": "input",
"desc": "Current reasoning trace.",
"prefix": "Current Trace:",
"title": "Current Trace",
"type": "string"
},
"reasoning": {
"__dspy_field_type": "output",
"desc": "Step-by-step reasoning, including uncertainty, ambiguity, or uncertainty in your thought process when relevant.",
"prefix": "Reasoning:",
"title": "Reasoning",
"type": "string"
},
"groundness": {
"__dspy_field_type": "output",
"desc": "Groundness label for current reasoning trace.",
"enum": [
"Grounded",
"Not Grounded"
],
"prefix": "Groundness:",
"title": "Groundness",
"type": "string"
}
},
"required": [
"question",
"previous_traces",
"current_trace",
"reasoning",
"groundness"
],
"title": "SeekBenchReasoningSig",
"type": "object"
}
}

48
program.json Normal file
View File

@@ -0,0 +1,48 @@
{
"traces": [],
"train": [],
"demos": [],
"signature": {
"instructions": "Given question + traces, classify whether the current reasoning is grounded. As you reason, note any uncertainties, ambiguities, and gaps \u2014 both in how the instructions apply to the task at hand and in whether you have the knowledge needed to solve it. Be honest in your reasoning when you are unsure about your answer.",
"fields": [
{
"prefix": "Question:",
"description": "Original question."
},
{
"prefix": "Previous Traces:",
"description": "All previous traces before the current reasoning trace."
},
{
"prefix": "Current Trace:",
"description": "Current reasoning trace."
},
{
"prefix": "Reasoning:",
"description": "Step-by-step reasoning, including uncertainty, ambiguity, or uncertainty in your thought process when relevant."
},
{
"prefix": "Groundness:",
"description": "Groundness label for current reasoning trace."
}
]
},
"lm": {
"model": "together_ai/Qwen/Qwen2.5-7B-Instruct-Turbo",
"model_type": "chat",
"cache": true,
"num_retries": 3,
"finetuning_model": null,
"launch_kwargs": {},
"train_kwargs": {},
"temperature": null,
"max_tokens": null
},
"metadata": {
"dependency_versions": {
"python": "3.11",
"dspy": "3.1.3",
"cloudpickle": "3.1"
}
}
}