84 lines
2.2 KiB
JavaScript
84 lines
2.2 KiB
JavaScript
//@ts-check
|
|
// DANGER DANGER DANGER - Simple and Stupid - Use from a discardable VM only
|
|
// Helpers to handle tools/functions calling wrt
|
|
// * javascript interpreter
|
|
// * simple arithmatic calculator
|
|
// by Humans for All
|
|
//
|
|
|
|
|
|
let js_meta = {
|
|
"type": "function",
|
|
"function": {
|
|
"name": "javascript",
|
|
"description": "Runs code in an javascript interpreter and returns the result of the execution after few seconds",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"code": {
|
|
"type": "string",
|
|
"description": "The code to run in the javascript interpreter."
|
|
}
|
|
},
|
|
"required": ["code"]
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Implementation of the javascript interpretor logic. Minimal skeleton for now.
|
|
* ALERT: Has access to the javascript environment and can mess with it and beyond
|
|
* @param {any} obj
|
|
*/
|
|
function js_run(obj) {
|
|
let func = new Function(obj["code"])
|
|
func()
|
|
}
|
|
|
|
|
|
let calc_meta = {
|
|
"type": "function",
|
|
"function": {
|
|
"name": "simple_calculator",
|
|
"description": "Calculates the provided arithmatic expression using javascript interpreter and returns the result of the execution after few seconds",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"arithexpr":{
|
|
"type":"string",
|
|
"description":"The arithmatic expression that will be calculated using javascript interpreter."
|
|
}
|
|
},
|
|
"required": ["arithexpr"]
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Implementation of the simple calculator logic. Minimal skeleton for now.
|
|
* ALERT: Has access to the javascript environment and can mess with it and beyond
|
|
* @param {any} obj
|
|
*/
|
|
function calc_run(obj) {
|
|
let func = new Function(obj["arithexpr"])
|
|
func()
|
|
}
|
|
|
|
|
|
/**
|
|
* @type {Object<string, Object>}
|
|
*/
|
|
export let tc_switch = {
|
|
"javascript": {
|
|
"handler": js_run,
|
|
"meta": js_meta
|
|
},
|
|
"simple_calculator": {
|
|
"handler": calc_run,
|
|
"meta": calc_meta
|
|
}
|
|
}
|
|
|