runwayml / model-sdk

💥🐍 Runway Model SDK: port your own machine learning models to Runway

Home Page:https://sdk.runwayml.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add description kwarg to all data_type constructors

brannondorsey opened this issue · 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.