find_methodology
Find methodology approaches for a specific research task. Returns structured method-level results (not raw chunks): method name, key idea, dataset used, performance metric. Filters by task domain, dataset, metric. Built on LLM-classified contentType=methodology chunks combined with benchmark results JOIN. Use this instead of search when you want HOW researchers approach a problem rather than 10 papers about it. Note: surfaces any chunk classified as methodology, including ones where the task is mentioned only as a toy example. Filter by category (e.g. cs.CV for image tasks) to narrow scope. This searches EXISTING papers for methods others have published (literature search) — it is NOT a guide for conducting your own research: for a step-by-step scientific method tailored to your own research question, start with the methodist door.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes | Research task: "relation extraction", "question answering", "image classification" | |
| limit | No | Max results to return | |
| dateTo | No | Filter: published on or before (ISO date) | |
| detail | No | 'standard'/'full' invoke an extra LLM extraction step to surface method_name + key_idea (~1.5s overhead). 'minimal' skips it. | standard |
| metric | No | Evaluation metric: "F1", "accuracy", "BLEU" | |
| run_id | No | Optional. The active methodist run_id (as returned by the methodist diagnose / get_current_dose door). Pass it whenever you call this tool while working inside a run, so the call is attributed to that run for the §8 usage crosscheck — attribution is run-anchored, so it stays correct even if your access token refreshes mid-run. Must be YOUR run: a run_id owned by a different principal, or a non-existent run_id, is rejected. | |
| dataset | No | Specific dataset name: "SQuAD", "ImageNet", "GLUE" | |
| dateFrom | No | Filter: published on or after (ISO date) | |
| framework | No | ML framework filter: "PyTorch", "TensorFlow" | |
| categories | No | Filter by arXiv categories (e.g. cs.AI, cs.LG) |