UNPKG
mateus-ai-agent-sdk
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A simple SDK to interact with OpenAI models
mateus-ai-agent-sdk
/
dist
/
types
/
agents
/
agent.d.ts
10 lines
(9 loc)
•
284 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
OpenAIClient
from
'../clients/openAIClient'
;
declare
class
Agent
{
name
:
string
;
instructions
:
string
;
client
:
OpenAIClient
;
constructor
(
name
:
string
,
instructions
:
string
,
client
:
OpenAIClient
);
run
(
input
:
string
):
Promise
<
string
>; }
export
default
Agent
;