Use Cases
Data Transformation
Convert datasets into custom formats using AVM
Objective: Transform raw CSV data into JSON schemas through LLM-generated scripts on AVM.
Data Transformation
Automate conversion pipelines by having an LLM produce transformation functions, then execute safely via AVM.
Scenario: Custom Schema Delivery
Clients request data in bespoke JSON structures without manual coding.
Solution: Schema-Driven Codegen
- Define Schema
Provide a JSON Schema template. - Generate Code
Prompt the LLM to write anexecute(input)
function matching the schema. - Secure Run
Execute the function in AVM’s sandbox. - Deliver Output
Return parsed JSON conforming to the schema.
Example (TypeScript)
Next Steps
- Validate output with JSON Schema tooling.
- Chain pipelines in agent orchestrations.
- Support additional runtimes for performance-critical tasks.