ufal / factgenie

Lightweight self-hosted span annotation tool
https://quest.ms.mff.cuni.cz/nlg/d2t-llm/
MIT License
23 stars 2 forks source link

restructure cli.py->run.py, main.py->app.py #141

Closed oplatek closed 3 weeks ago

oplatek commented 3 weeks ago

Why the restructure?

It enables us to create simple VSCode debug setup stored typically in ./vscode/launch.json

{
    "configurations": [

        {
            "type": "debugpy",
            "request": "launch",
            "name": "Launch factgenie",
            "program": "${workspaceFolder}/factgenie/run.py",
        }
    ]
}