Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 562 Bytes

Advanced.md

File metadata and controls

24 lines (20 loc) · 562 Bytes

Advanced Usage

Debugging for VS Code users

Create the file .vscode/launch.json with the following content:

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: MiniAGI",
            "type": "python",
            "request": "launch",
            "program": "${cwd}/miniagi.py",
            "console": "integratedTerminal",
            "justMyCode": true,
            "args": ["test query"],
        }
    ]
}

Set the desired input arg <objective> and click "Run and Debug" in VS Code to start debugging.