├── config.json └── src ├── __init__.py ├── agents ├── __init__.py ├── agent.py ├── fixer.py ├── fixerpro.py ├── helper.py ├── locator.py ├── repofocus.py ├── slicer.py └── summarizer.py ├── myast.py ├── parse.py ├── patch.py ├── pipeline.py ├── prompts ├── __init__.py ├── fixer.yaml ├── fixerpro.yaml ├── helper.yaml ├── locator.yaml ├── prepare.py ├── repofocus.yaml ├── slicer.yaml ├── summarizer.yaml └── tokens.py ├── unit_test.py └── utils.py /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/config.json -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | from. import parse 2 | 3 | -------------------------------------------------------------------------------- /src/agents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/agents/__init__.py -------------------------------------------------------------------------------- /src/agents/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/agents/agent.py -------------------------------------------------------------------------------- /src/agents/fixer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/agents/fixer.py -------------------------------------------------------------------------------- /src/agents/fixerpro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/agents/fixerpro.py -------------------------------------------------------------------------------- /src/agents/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/agents/helper.py -------------------------------------------------------------------------------- /src/agents/locator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/agents/locator.py -------------------------------------------------------------------------------- /src/agents/repofocus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/agents/repofocus.py -------------------------------------------------------------------------------- /src/agents/slicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/agents/slicer.py -------------------------------------------------------------------------------- /src/agents/summarizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/agents/summarizer.py -------------------------------------------------------------------------------- /src/myast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/myast.py -------------------------------------------------------------------------------- /src/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/parse.py -------------------------------------------------------------------------------- /src/patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/patch.py -------------------------------------------------------------------------------- /src/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/pipeline.py -------------------------------------------------------------------------------- /src/prompts/__init__.py: -------------------------------------------------------------------------------- 1 | from enum import Enum 2 | 3 | -------------------------------------------------------------------------------- /src/prompts/fixer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/prompts/fixer.yaml -------------------------------------------------------------------------------- /src/prompts/fixerpro.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/prompts/fixerpro.yaml -------------------------------------------------------------------------------- /src/prompts/helper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/prompts/helper.yaml -------------------------------------------------------------------------------- /src/prompts/locator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/prompts/locator.yaml -------------------------------------------------------------------------------- /src/prompts/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/prompts/prepare.py -------------------------------------------------------------------------------- /src/prompts/repofocus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/prompts/repofocus.yaml -------------------------------------------------------------------------------- /src/prompts/slicer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/prompts/slicer.yaml -------------------------------------------------------------------------------- /src/prompts/summarizer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/prompts/summarizer.yaml -------------------------------------------------------------------------------- /src/prompts/tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/prompts/tokens.py -------------------------------------------------------------------------------- /src/unit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/unit_test.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AcceptePapier/UniDebugger/HEAD/src/utils.py --------------------------------------------------------------------------------