chore: remove uage output

This commit is contained in:
Joel 2024-04-03 16:51:50 +08:00
parent fedcfe94ae
commit b705041dda
2 changed files with 0 additions and 7 deletions

View File

@ -325,7 +325,6 @@ export const LLM_OUTPUT_STRUCT: Var[] = [
variable: 'text',
type: VarType.string,
},
USAGE,
]
export const KNOWLEDGE_RETRIEVAL_OUTPUT_STRUCT: Var[] = [
@ -333,7 +332,6 @@ export const KNOWLEDGE_RETRIEVAL_OUTPUT_STRUCT: Var[] = [
variable: 'result',
type: VarType.arrayObject,
},
USAGE,
]
export const TEMPLATE_TRANSFORM_OUTPUT_STRUCT: Var[] = [

View File

@ -244,11 +244,6 @@ const Panel: FC<NodePanelProps<LLMNodeType>> = ({
type='string'
description={t(`${i18nPrefix}.outputVars.output`)}
/>
<VarItem
name='usage'
type='object'
description={t(`${i18nPrefix}.outputVars.usage`)}
/>
</>
</OutputVars>
</div>