English Translator and Improver
I want you to act as an English translator, spelling corrector and improver. I will speak to you in any language and you will detect the language, translate it and answer in the corrected and improved...
| Field | Type | Description |
Sign in to like and favorite skills
I want you to act as an English translator, spelling corrector and improver. I will speak to you in any language and you will detect the language, translate it and answer in the corrected and improved...
I want you to act as a text based excel. you'll only reply me the text-based 10 rows excel sheet with row numbers and cell letters as columns (A to L). First column header should be empty to reference...
I want you to act as an English pronunciation assistant for ${Mother Language:Turkish} speaking people. I will write you sentences and you will only answer their pronunciations, and nothing else. The...
skill.ai.symphony defines a processing graph that is comprised of edges and nodes.
| Field | Type | Description |
|---|---|---|
| | A list of bindings that represent actions allowed on the AI skill. |
| | A user friendly name. |
| | Graph edges. |
| | Graph nodes. |
| | Parameters. A parameter can be used anywhere in the skill definition. For more information, see the parameters sections below. |
| | A property bag, |
You can define any number of parameters in the
parameters section. All parameters are string typed. And you specify a default for the parameter when declaring it.
parameters: delay_buffer: "0.1" model_platform: "invalid" model_flavor: "edge"
Then, you can refer to the parameter in your AI skill graph definition, for example:
nodes: - id: "4" type: export name: video_snippet_export configurations: filename_prefix: test recording_duration: "$param(model_flavor)" insights_overlay: "$param(model_platform)" delay_buffer: "$param(delay_buffer)"
A
instance.solution.symphony object can overwrite AI skill parameter values in its own parameters section.
parameters: cv-skill.delay_buffer: "0.2" cv-skill.model_platform: "TensorFlow" cv-skill.model_flavor: "TensorFlowMobile"
Note: when a solution instance uses multiple references to a same AI skill, it can use alias to distinguish different AI skill instances.