Initial Commit

This commit is contained in:
Jordan Wages 2025-06-15 21:55:35 -05:00
commit eb02c6f3bd
13 changed files with 718 additions and 0 deletions

25
experiment/schema.json Normal file
View file

@ -0,0 +1,25 @@
[
{
"namespace": "aiFilter",
"functions": [
{
"name": "initConfig",
"type": "function",
"async": true,
"parameters": [
{ "name": "config", "type": "any" }
]
},
{
"name": "classify",
"type": "function",
"parameters": [
{
"name": "msg",
"type": "any"
}
]
}
]
}
]