Coding
PromptBeginner5 minmarkdown
Nano Banana Pro
Agent skill for nano-banana-pro
7
This is a proof of principle package for LLM's that can code up particle physics plots and other tasks.
Sign in to like and favorite skills
This is a proof of principle package for LLM's that can code up particle physics plots and other tasks.
pip install -e .[test] to get everything properly installed for testing and development.hatch to build the package.typer for the CLI. Commands and sub commands are encouraged.pydantic objects where it makes sense (reading config from files, etc.).annotations.pytest to test all tests, and pytest --no-docker if in an environment without docker.pytest fixtures when needed, including ones like tmp_path to keep tests clean.tests directory, and each source file's test can be found in test_<source-file>.py. Always put new unit tests in the corresponding file of the code file you are testing.black . runs on all new code without changing it (e.g. black formatting rules). You can ignore any errors in notebooks.flake8 src/ and flake8 tests/ also run. Line length is 99.