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
/
api.d.ts
10 lines
(9 loc)
•
274 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
type
{
Context
}
from
'./configuration.js'
;
declare
class
PaybyrdAPI
{
private
apiKey;
private
baseUrl;
context
:
Context
;
constructor
(
apiKey
:
string
,
context
?:
Context
);
run
(
method
:
string
,
arg
:
any
):
Promise
<
string
>; }
export
default
PaybyrdAPI
;