We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e618d88 commit af5c677Copy full SHA for af5c677
webview-ui/src/components/settings/ModelInfoView.tsx
@@ -69,13 +69,13 @@ export const ModelInfoView = ({
69
].filter(Boolean)
70
71
const priceInfoItems = [
72
- modelInfo?.inputPrice !== undefined && modelInfo.inputPrice > 0 && (
+ modelInfo?.inputPrice !== undefined && (
73
<>
74
<span className="font-medium">{t("settings:modelInfo.inputPrice")}:</span>{" "}
75
{formatPrice(modelInfo.inputPrice)} / 1M tokens
76
</>
77
),
78
- modelInfo?.outputPrice !== undefined && modelInfo.outputPrice > 0 && (
+ modelInfo?.outputPrice !== undefined && (
79
80
<span className="font-medium">{t("settings:modelInfo.outputPrice")}:</span>{" "}
81
{formatPrice(modelInfo.outputPrice)} / 1M tokens
0 commit comments