Update default values for input types in flow.py
This commit is contained in:
parent
ec24470ce8
commit
6ae0e9d936
1 changed files with 3 additions and 3 deletions
|
|
@ -12,9 +12,9 @@ if TYPE_CHECKING:
|
|||
from langflow.graph.vertex.base import Vertex
|
||||
|
||||
INPUT_TYPE_MAP = {
|
||||
"ChatInput": {"type_hint": "Optional[str]", "default": ""},
|
||||
"TextInput": {"type_hint": "Optional[str]", "default": ""},
|
||||
"JSONInput": {"type_hint": "Optional[dict]", "default": {}},
|
||||
"ChatInput": {"type_hint": "Optional[str]", "default": '""'},
|
||||
"TextInput": {"type_hint": "Optional[str]", "default": '""'},
|
||||
"JSONInput": {"type_hint": "Optional[dict]", "default": "{}"},
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue