Merge branch 'dev' into float_range

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-12-10 16:52:52 -03:00 committed by GitHub
commit 00f5772d17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 65 additions and 5 deletions

View file

@ -56,7 +56,7 @@ The CustomComponent class serves as the foundation for creating custom component
- **build_config**: Used to define the configuration fields of the component (if applicable). It should always return a dictionary with specific keys representing the field names and corresponding configurations. This method is called when the code is processed (i.e., when you click _Check and Save_ in the code editor). It must follow the format described below:
- Top-level keys are field names.
- Their values are also of type _`dict`_. They specify the behavior of the generated fields.
- Their values are can be of type _`langflow.field_typing.TemplateField`_ or _`dict`_. They specify the behavior of the generated fields.
Below are the available keys used to configure component fields: