mirror of
https://github.com/langgenius/dify.git
synced 2026-07-27 15:08:35 +08:00
docs: fix typos in ValueSourceType docstring (#39573)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
4a44befb00
commit
ac0320a70d
@ -67,10 +67,10 @@ class FormInputType(enum.StrEnum):
|
||||
|
||||
class ValueSourceType(enum.StrEnum):
|
||||
"""ValueSourceType records whether the value comes from a static setting
|
||||
in form definiton, or a variable while the workflow is running.
|
||||
in form definition, or a variable while the workflow is running.
|
||||
"""
|
||||
|
||||
# `VARIABLE` means that the value comes from a variable in workflow execution
|
||||
VARIABLE = enum.auto()
|
||||
# `CONSTANT` measn that the value comes from a static setting in form definition.
|
||||
# `CONSTANT` means that the value comes from a static setting in form definition.
|
||||
CONSTANT = enum.auto()
|
||||
|
||||
@ -22993,11 +22993,11 @@ User action configuration.
|
||||
#### ValueSourceType
|
||||
|
||||
ValueSourceType records whether the value comes from a static setting
|
||||
in form definiton, or a variable while the workflow is running.
|
||||
in form definition, or a variable while the workflow is running.
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
| ---- | ---- | ----------- | -------- |
|
||||
| ValueSourceType | string | ValueSourceType records whether the value comes from a static setting in form definiton, or a variable while the workflow is running. | |
|
||||
| ValueSourceType | string | ValueSourceType records whether the value comes from a static setting in form definition, or a variable while the workflow is running. | |
|
||||
|
||||
#### VerificationTokenResponse
|
||||
|
||||
|
||||
@ -4052,11 +4052,11 @@ User action configuration.
|
||||
#### ValueSourceType
|
||||
|
||||
ValueSourceType records whether the value comes from a static setting
|
||||
in form definiton, or a variable while the workflow is running.
|
||||
in form definition, or a variable while the workflow is running.
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
| ---- | ---- | ----------- | -------- |
|
||||
| ValueSourceType | string | ValueSourceType records whether the value comes from a static setting in form definiton, or a variable while the workflow is running. | |
|
||||
| ValueSourceType | string | ValueSourceType records whether the value comes from a static setting in form definition, or a variable while the workflow is running. | |
|
||||
|
||||
#### WeightKeywordSetting
|
||||
|
||||
|
||||
@ -1600,11 +1600,11 @@ User action configuration.
|
||||
#### ValueSourceType
|
||||
|
||||
ValueSourceType records whether the value comes from a static setting
|
||||
in form definiton, or a variable while the workflow is running.
|
||||
in form definition, or a variable while the workflow is running.
|
||||
|
||||
| Name | Type | Description | Required |
|
||||
| ---- | ---- | ----------- | -------- |
|
||||
| ValueSourceType | string | ValueSourceType records whether the value comes from a static setting in form definiton, or a variable while the workflow is running. | |
|
||||
| ValueSourceType | string | ValueSourceType records whether the value comes from a static setting in form definition, or a variable while the workflow is running. | |
|
||||
|
||||
#### VerificationTokenResponse
|
||||
|
||||
|
||||
@ -2528,7 +2528,7 @@ export const zAgentConfigSnapshotDetailResponse = z.object({
|
||||
* ValueSourceType
|
||||
*
|
||||
* ValueSourceType records whether the value comes from a static setting
|
||||
* in form definiton, or a variable while the workflow is running.
|
||||
* in form definition, or a variable while the workflow is running.
|
||||
*/
|
||||
export const zValueSourceType = z.enum(['constant', 'variable'])
|
||||
|
||||
|
||||
@ -3895,7 +3895,7 @@ export const zAgentKnowledgeRetrievalConfig = z.object({
|
||||
* ValueSourceType
|
||||
*
|
||||
* ValueSourceType records whether the value comes from a static setting
|
||||
* in form definiton, or a variable while the workflow is running.
|
||||
* in form definition, or a variable while the workflow is running.
|
||||
*/
|
||||
export const zValueSourceType = z.enum(['constant', 'variable'])
|
||||
|
||||
|
||||
@ -430,7 +430,7 @@ export const zFileListInputConfig = z.object({
|
||||
* ValueSourceType
|
||||
*
|
||||
* ValueSourceType records whether the value comes from a static setting
|
||||
* in form definiton, or a variable while the workflow is running.
|
||||
* in form definition, or a variable while the workflow is running.
|
||||
*/
|
||||
export const zValueSourceType = z.enum(['constant', 'variable'])
|
||||
|
||||
|
||||
@ -1894,7 +1894,7 @@ export const zUserActionConfig = z.object({
|
||||
* ValueSourceType
|
||||
*
|
||||
* ValueSourceType records whether the value comes from a static setting
|
||||
* in form definiton, or a variable while the workflow is running.
|
||||
* in form definition, or a variable while the workflow is running.
|
||||
*/
|
||||
export const zValueSourceType = z.enum(['constant', 'variable'])
|
||||
|
||||
|
||||
@ -641,7 +641,7 @@ export const zUserActionConfig = z.object({
|
||||
* ValueSourceType
|
||||
*
|
||||
* ValueSourceType records whether the value comes from a static setting
|
||||
* in form definiton, or a variable while the workflow is running.
|
||||
* in form definition, or a variable while the workflow is running.
|
||||
*/
|
||||
export const zValueSourceType = z.enum(['constant', 'variable'])
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user