Classes consist of a name, a list of properties, and their types. In the context of LLMs, classes describe the type of the variables you can inject into prompts and extract out from the response.
Note properties have no :
When prompt engineering, you can also alias values and add descriptions.
Aliasing renames the field for the llm to potentially “understand” your value better, while keeping the original name in your code, so you don’t need to change your downstream code everytime.
This will also be used for parsing the output of the LLM back into the original object.
This adds some additional context to the field in the prompt.
If set, will allow you to add fields to the class dynamically at runtime (in your python/ts/etc code). See dynamic classes for more information.
Classes may have any number of properties. Property names must follow these rules:
The type of a property can be any supported type
None in python.See Dynamic Types.
Never supported. Like rust, we take the stance that composition is better than inheritance.