aboutsummaryrefslogtreecommitdiffstats
path: root/rb
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 /rb
parentbe279dcd322da7f84bb6451f10456b19a979e9ad (diff)
downloadllm-functions-docker-03c4b6982293c5be31d7eda89b6dcb8c1a7a8059.tar.gz
feat: supports functions in bash/js/python/ruby (#6)
Diffstat (limited to 'rb')
-rw-r--r--rb/may_execute_rb_code.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/rb/may_execute_rb_code.rb b/rb/may_execute_rb_code.rb
new file mode 100644
index 0000000..a1f9821
--- /dev/null
+++ b/rb/may_execute_rb_code.rb
@@ -0,0 +1,22 @@
+def declarate
+ {
+ "name": "may_execute_rb_code",
+ "description": "Runs the ruby code.",
+ "parameters": {
+ "type": "object",
+ "properties": {
+ "code": {
+ "type": "string",
+ "description": "Ruby code to execute, such as `puts \"hello world\"`"
+ }
+ },
+ "required": [
+ "code"
+ ]
+ }
+ }
+end
+
+def execute(data)
+ eval(data["code"])
+end