Light Logo
CLI (v0.57.0)Reference

wriftai models create

CLI reference for wriftai models create

wriftai models create

Create a model

wriftai models create [flags]

Examples

  Create a model using only the required flags	
  $ wriftai models create --name my-model
  
  Create a model using all available flags
  $ wriftai models create \
    --name my-model \
    --visibility public \
    --description "A great model" \
    --source-url https://github.com/user/repo \
    --license-url https://license.dev \
    --paper-url https://paper.dev \
	--overview "overview of model" \
	--category-slugs "image-to-text,image-to-image"

Options

      --category-slugs strings   List of model category slugs (optional)
      --description string       Description of the model (optional)
  -h, --help                     help for create
      --license-url string       URL where the model's usage is specified (optional)
      --name string              Name of the model (required)
  -o, --output format            Set output format. Supported formats: json, yaml (default json)
      --overview string          Overview of the model (optional)
      --paper-url string         URL from where research info on the model can be found (optional)
      --source-url string        URL from where the model's code can be referenced (optional)
      --visibility string        Visibility of the model (optional)

Options inherited from parent commands

      --debug   Enable debug mode

SEE ALSO