UNPKG
auto-gpt-ts
Version:
latest (0.0.3)
0.0.3
0.0.2
my take of Auto-GPT in typescript
github.com/tuvia-r/auto-GPT-ts
tuvia-r/auto-GPT-ts
auto-gpt-ts
/
dist
/
commands
/
execute-command.d.ts
8 lines
(7 loc)
•
210 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
declare
function
getCommand
(
responseJson
: { [key:
string
]:
any
; }
): {
commandName
:
any
;
args
:
any
; };
export
declare
function
executeCommand
(
commandName
:
string
,
args
:
any
):
Promise
<
string
>;