| name | LightFlow LLM Generate |
| description | Use this skill when working with the lightflow.llm_generate workflow that provides offline mock LLM generation. |
| version | 0.1.0 |
LightFlow LLM Generate
Use lightflow.llm_generate for deterministic offline mock text generation. Provider-backed RIG workflows can still declare lightflow.llm_generate without the builtin mock engine.
Workflow
- Workflow id:
lightflow.llm_generate
- Runtime:
lightflow.llm.generate, engine builtin.llm.mock.v1.
- Input
prompt: required prompt text.
- Input
model: optional mock model name.
- Outputs
text and response.
Usage
lfw run lightflow.llm_generate -i prompt='hello' -i model=mock
API Usage
Start lfw serve, then call the workflow through the shared HTTP run contract. Adjust inputs to match the workflow contract above.
curl -sS -X POST http://127.0.0.1:5174/workflows/lightflow.llm_generate/run \
-H 'content-type: application/json' \
-d '{"inputs":{}}'