Class ProgramInputOutputExample
- Namespace
- AiDotNet.ProgramSynthesis.Models
- Assembly
- AiDotNet.dll
Represents a single input-output example for program synthesis.
public sealed class ProgramInputOutputExample
- Inheritance
-
ProgramInputOutputExample
- Inherited Members
Remarks
Examples can be used to guide generation (inductive synthesis) and to validate candidate programs (execution-based evaluation).
For Beginners: This is one example of what the program should do.
It says: "When the program gets this input, it should produce this output."
Properties
ExpectedOutput
public string ExpectedOutput { get; set; }
Property Value
Input
public string Input { get; set; }