SimpleChatTC:DataStore:FuncCallArgs: Any type not supported
So mention that may be ai can send complex objects in stringified form. Rather once type of value is set to string, ai should normally do it, but no harm is hinting.
This commit is contained in:
parent
b080ddf5c3
commit
797b702251
|
|
@ -22,7 +22,7 @@ let dsget_meta = {
|
||||||
"description": "The key whose value should be returned."
|
"description": "The key whose value should be returned."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": [ "key" ],
|
"required": ["key"],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -54,8 +54,8 @@ let dsset_meta = {
|
||||||
"description": "The key under which to store the value."
|
"description": "The key under which to store the value."
|
||||||
},
|
},
|
||||||
"value": {
|
"value": {
|
||||||
"type": "any",
|
"type": "string",
|
||||||
"description": "The value to store. Can be any JSON-serialisable type."
|
"description": "The value to store, complex objects could be passed in JSON Stringified format."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"required": ["key", "value"]
|
"required": ["key", "value"]
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue