UNPKG
@paybyrd/ai-agent-toolkit
Version:
latest (0.3.6)
0.3.6
0.3.5
0.3.4
0.3.3
0.3.2
0.3.1
0.3.0
0.2.7
0.2.6
0.2.5
0.2.4
0.1.3
0.1.2
0.1.1
0.1.0
Toolkit for building AI agents with various models
github.com/paybyrd/ai-agent-toolkit-js
@paybyrd/ai-agent-toolkit
/
dist
/
src
/
tools.d.ts
15 lines
(14 loc)
•
309 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
{ z }
from
'zod'
;
export
type
Tool
= {
method
:
string
;
name
:
string
;
description
:
string
;
parameters
: z.
ZodObject
<
any
,
any
,
any
,
any
>;
actions
: { [
key
:
string
]: { [
action
:
string
]:
boolean
; }; }; };
declare
const
tools
:
Tool
[];
export
default
tools;