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:
hanishkvc 2025-10-30 03:13:32 +05:30
parent b080ddf5c3
commit 797b702251
1 changed files with 3 additions and 3 deletions

View File

@ -22,7 +22,7 @@ let dsget_meta = {
"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."
},
"value": {
"type": "any",
"description": "The value to store. Can be any JSON-serialisable type."
"type": "string",
"description": "The value to store, complex objects could be passed in JSON Stringified format."
}
},
"required": ["key", "value"]