From 487d860d105bac57ad274e8ad8a3db578022192c Mon Sep 17 00:00:00 2001 From: shatfield4 Date: Mon, 9 Sep 2024 13:44:21 -0700 Subject: [PATCH] remove unneeded files --- .../agent-skillsold/currency-converter.zip | Bin 1359 -> 0 bytes .../currency-converter/handler.js | 42 -------------- .../currency-converter/plugin.json | 26 --------- .../open-meteo-weather-api/handler.js | 53 ------------------ .../open-meteo-weather-api/plugin.json | 52 ----------------- 5 files changed, 173 deletions(-) delete mode 100644 server/storage/plugins/agent-skillsold/currency-converter.zip delete mode 100644 server/storage/plugins/agent-skillsold/currency-converter/handler.js delete mode 100644 server/storage/plugins/agent-skillsold/currency-converter/plugin.json delete mode 100644 server/storage/plugins/agent-skillsold/open-meteo-weather-api/handler.js delete mode 100644 server/storage/plugins/agent-skillsold/open-meteo-weather-api/plugin.json diff --git a/server/storage/plugins/agent-skillsold/currency-converter.zip b/server/storage/plugins/agent-skillsold/currency-converter.zip deleted file mode 100644 index 8dbd28a3a4c293a83e09c0bc88822e065fc76557..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1359 zcmWIWW@Zs#0D*@wnvq}zln`c6U`Q@4DoV{uuGCG=&nrtUDoHKU4-MgEU_b6~KMjUU zE4UdLS-vtdFn|pT02|1`z`2Jb^|jK^HOqBi}bRJ!A9$Z+)vX3Vi1jH z^wto^^-~N4_Pt*(G1<1Ea=pqi;o0RM7M%RNptH(Y%_Ox!Ys(VZ8`~BClrKM^;D z>%>BzA;D{20~aG3GO$|WbWOEf*|4Y|6`XUF}l`#A({FW3ok4+*mUsYzWu)6Uf5ih+k82w z^-k*A6Pq`LN*7(*zCt5PTp?tCQm=6qU%KzrLx#3|#Rh&Ul~Qra#m^?Z(P%kwE$d?@ z?{htwU(=cwblQ0P1}Ln2#kNl=t9F*krmJg~Bwh3>ne@Rt_KqL#)^=9BpMTp92La|;8-^AwIZoSKz3d*89caY1Yk#PSb*v-)tN zPvOjcpK@`Pna$HL|Ku%hzhcR}J8t_G_5Qr*jkj+;dg7bbKKGq)(;Mr*EtOxi?#XfQ zsVm*9C17)MS|i8f`VYm5r5}vz6K;L^#{O^W=7+*wWqvzEM0l(8y=(5(2+zGW?aiJ4 zPO7)LwiZ?Poh+Jrb2``dYeuL4CnhSUiNCXoR<(~g{_%@&fHylwkLNYnJHT`VN-T(E z)Rc`#M)6Dx4070$Q9({=dS)Il73JrF(@{v&{j^XZ2GMBgXzqm5euoVNT)+S93Jg=2 zx*}({bCauhPR4J>b;iCtbuNz!m##Rq|9Y96fR|ltE*yK}6nyDUBR! z-@IS4IbFp~EBs{t*6?%7PSkE)cWrUh;^|AQ=FMUMaH>QqaURoY5dq#Pw*Skv$W^;O zxE7dod*Oz~%ci=#{;YKV_TMR!*PQcA;+iqlOlJF6|I=jXv*-KW-OiEBbK`8fpK$TK-+G^O436)(p2AbS$Y!GP zexYggHR%pnEz)adWwEy3ef+jO;QW%D&!VT^#h-}qJFxul>G+1DfB23Tuz~{mS`+8D zzrbt`3eEs;MkWzv+(iJaNO(3y3cuV15Bv1xhx^ l{sbi(7+BIc1L$)sejy a + b, 0) / - data.hourly[property].length - ); - }, - - // Recommended: Use this method to call external APIs or services - // by requiring the module in the function scope and only if the code execution reaches that line - // this is to prevent any unforseen issues with the global scope and module loading/unloading. - // This file should be placed in the same folder as your handler.js file. - _doExternalApiCall(myProp) { - const _ScopedExternalCaller = require("./external-api-caller.js"); - return _ScopedExternalCaller.doSomething(myProp); - }, - }; \ No newline at end of file diff --git a/server/storage/plugins/agent-skillsold/open-meteo-weather-api/plugin.json b/server/storage/plugins/agent-skillsold/open-meteo-weather-api/plugin.json deleted file mode 100644 index 1666a9ed3a..0000000000 --- a/server/storage/plugins/agent-skillsold/open-meteo-weather-api/plugin.json +++ /dev/null @@ -1,52 +0,0 @@ -{ - "active": false, - "hubId": "open-meteo-weather-api", - "name": "open-meteo-weather-api", - "schema": "skill-1.0.0", - "version": "1.0.0", - "description": "Gets the weather for a given location latitude and longitude using the open-meteo API", - "author": "@tcarambat", - "author_url": "https://github.com/tcarambat", - "license": "MIT", - "setup_args": { - "OPEN_METEO_API_KEY": { - "type": "string", - "required": false, - "input": { - "type": "text", - "default": "YOUR_OPEN_METEO_API_KEY", - "placeholder": "sk-1234567890", - "hint": "The API key for the open-meteo API" - }, - "value": "fsijdfoijdsof" - } - }, - "examples": [ - { - "prompt": "What is the weather in Tokyo?", - "call": "{\"latitude\": 35.6895, \"longitude\": 139.6917}" - }, - { - "prompt": "What is the weather in San Francisco?", - "call": "{\"latitude\": 37.7749, \"longitude\": -122.4194}" - }, - { - "prompt": "What is the weather in London?", - "call": "{\"latitude\": 51.5074, \"longitude\": -0.1278}" - } - ], - "entrypoint": { - "file": "handler.js", - "params": { - "latitude": { - "description": "Latitude of the location", - "type": "string" - }, - "longitude": { - "description": "Longitude of the location", - "type": "string" - } - } - }, - "imported": true -} \ No newline at end of file