Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
kiara_plugin.language_processing / examples / pipelines / example_pipeline_language_processing.yaml
Size: Mime:
pipeline_name: example_pipeline_language_processing
doc: Example pipeline for the language_processing plugin.
steps:
  - step_id: add_hello_string
    module_type: example_proj.example
    module_config:
      separator: " "
      constants:
        text_1: "Hello"
      defaults:
        text_2: "World"
  - step_id: add_exclamation_mark
    module_type: example_proj.example
    module_config:
      separator: ""
      constants:
        text_2: "!"
    input_links:
      text_1: add_hello_string.text

input_aliases:
  add_hello_string.text_2: name

output_aliases:
  add_exclamation_mark.text: greeting