mirror of
https://github.com/reconurge/flowsint.git
synced 2026-03-11 17:34:31 -05:00
feat: type validation + simplified transform system
This commit is contained in:
@@ -282,6 +282,8 @@ def extract_input_schema(
|
||||
"fields": [
|
||||
resolve_field(prop, details=info, schema=schema)
|
||||
for prop, info in details.get("properties", {}).items()
|
||||
# exclude label from properties to fill
|
||||
if prop != "label"
|
||||
],
|
||||
}
|
||||
|
||||
|
||||
@@ -8,7 +8,6 @@ import re
|
||||
import ssl
|
||||
import socket
|
||||
from typing import Dict, Any, List, Type
|
||||
from pydantic import BaseModel
|
||||
import inspect
|
||||
from typing import Any, Dict, Type
|
||||
from pydantic import BaseModel, TypeAdapter
|
||||
|
||||
Reference in New Issue
Block a user