Skip to content

Commit

Permalink
OS-7486. Change command names
Browse files Browse the repository at this point in the history
  • Loading branch information
ek-hystax authored Apr 18, 2024
1 parent b2dc11b commit fa4a87f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ const SettingModelVersion = () => (
</Typography>
</li>
</ul>
<CodeBlock text={`arcee.set_model_version("1.2.3-release")`} />
<CodeBlock text={`arcee.model_version("1.2.3-release")`} />
</>
);

Expand Down Expand Up @@ -437,7 +437,7 @@ const SettingModelVersionAlias = () => (
</Typography>
</li>
</ul>
<CodeBlock text={`arcee.set_model_version_alias("winner")`} />
<CodeBlock text={`arcee.model_version_alias("winner")`} />
</>
);

Expand Down Expand Up @@ -472,7 +472,7 @@ const SettingModelVersionTag = () => (
</Typography>
</li>
</ul>
<CodeBlock text={`arcee.set_model_version_tag("env", "staging demo")`} />
<CodeBlock text={`arcee.model_version_tag("env", "staging demo")`} />
</>
);

Expand Down
6 changes: 3 additions & 3 deletions ngui/ui/src/translations/en-US/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -1155,10 +1155,10 @@
"mlProfilingIntegration.orInCaseOfError": "or in case of error",
"mlProfilingIntegration.sendMetrics": "To send <link>metrics</link>, use the <pre>send</pre> method with the following metric",
"mlProfilingIntegration.sendMetricsDataDescription": "<strong>data</strong> (dict): a dictionary of metric names and their respective values (note that metric data values should be numeric).",
"mlProfilingIntegration.settingModelVersion": "To set custom model version, use the <pre>set_model_version</pre> method with the following parameter",
"mlProfilingIntegration.settingModelVersionAlias": "To set model version alias, use the <pre>set_model_version_alias</pre> method with the following parameter",
"mlProfilingIntegration.settingModelVersion": "To set custom model version, use the <pre>model_version</pre> method with the following parameter",
"mlProfilingIntegration.settingModelVersionAlias": "To set model version alias, use the <pre>model_version_alias</pre> method with the following parameter",
"mlProfilingIntegration.settingModelVersionAliasTitle": "Setting model version alias",
"mlProfilingIntegration.settingModelVersionTag": "To add tags to a model version, use the <pre>set_model_version_tag</pre> method with the following parameters",
"mlProfilingIntegration.settingModelVersionTag": "To add tags to a model version, use the <pre>model_version_tag</pre> method with the following parameters",
"mlProfilingIntegration.settingModelVersionTagKeyDescription": "<strong>key</strong> (str): tag name",
"mlProfilingIntegration.settingModelVersionTagTitle": "Setting model version tag",
"mlProfilingIntegration.settingModelVersionTagValueDescription": "<strong>value</strong> (str): tag value",
Expand Down

0 comments on commit fa4a87f

Please sign in to comment.