Feat: description field for env variables (#21556)

This commit is contained in:
Minamiyama
2025-07-09 15:18:23 +08:00
committed by GitHub
parent e39236186d
commit 3643ed1014
26 changed files with 97 additions and 26 deletions

View File

@@ -462,6 +462,7 @@ const formatItem = (
return {
variable: `env.${env.name}`,
type: env.value_type,
description: env.description,
}
}) as Var[]
break
@@ -472,7 +473,7 @@ const formatItem = (
return {
variable: `conversation.${chatVar.name}`,
type: chatVar.value_type,
des: chatVar.description,
description: chatVar.description,
}
}) as Var[]
break