runwayml/model-sdk

Add description kwarg to all data_type constructors

brannondorsey opened this issue · 1 comments

Add a description kwarg for all data types so that users can describe the role of the option/input/output. The Runway app could then parse these descriptions and expose them to users as tooltips in the app interface.

class text(object):
    def __init__(self, name=None, description='', default='', min_length=0, max_length=None):
    #...

Closed via #51.