mirror of
https://github.com/langgenius/dify.git
synced 2026-03-01 22:08:41 +08:00
6 lines
143 B
Python
6 lines
143 B
Python
def is_str(v):
|
|
return isinstance(v, str)
|
|
|
|
def is_str_dict(v):
|
|
return isinstance(v, dict) and all(isinstance(k, str) for k in v.keys())
|