modal-batch-processing
Installation
SKILL.md
Modal Batch Processing
Quick Start
- Verify the actual local Modal environment before writing code.
modal --version
python -c "import modal,sys; print(modal.__version__); print(sys.executable)"
modal profile current
- Do not assume the default
pythoninterpreter matches the environment behind themodalCLI. - Switch to the project virtualenv or the interpreter behind the installed
modalCLI before writing examples or running scripts. - Use
with modal.enable_output():aroundwith app.run():when local provisioning logs or remote prints are needed for debugging.
- Classify the request before writing code.