aboutsummaryrefslogtreecommitdiffstats
path: root/js/may_execute_js_code.js
diff options
context:
space:
mode:
authorsigoden <sigoden@gmail.com>2024-05-19 22:43:49 +0800
committerGitHub <noreply@github.com>2024-05-19 22:43:49 +0800
commit03c4b6982293c5be31d7eda89b6dcb8c1a7a8059 (patch)
treea2d48d189dcbe242ab69b174c734db4e70d502a2 /js/may_execute_js_code.js
parentbe279dcd322da7f84bb6451f10456b19a979e9ad (diff)
downloadllm-functions-docker-03c4b6982293c5be31d7eda89b6dcb8c1a7a8059.tar.gz
feat: supports functions in bash/js/python/ruby (#6)
Diffstat (limited to 'js/may_execute_js_code.js')
-rw-r--r--js/may_execute_js_code.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/js/may_execute_js_code.js b/js/may_execute_js_code.js
new file mode 100644
index 0000000..9575582
--- /dev/null
+++ b/js/may_execute_js_code.js
@@ -0,0 +1,22 @@
+exports.declarate = function declarate() {
+ return {
+ "name": "may_execute_js_code",
+ "description": "Runs the javascript code in node.js.",
+ "parameters": {
+ "type": "object",
+ "properties": {
+ "code": {
+ "type": "string",
+ "description": "Javascript code to execute, such as `console.log(\"hello world\")`"
+ }
+ },
+ "required": [
+ "code"
+ ]
+ }
+ }
+}
+
+exports.execute = function execute(data) {
+ eval(data.code)
+}