UNPKG
makima-ts
Version:
latest (1.0.0-alpha.4)
1.0.0-alpha.4
1.0.0-alpha.3
1.0.0-alpha.2
1.0.0-alpha.1
Typescript SDK for Makima.
makima-ts
/
dist
/
agent
/
types.d.ts
13 lines
(12 loc)
•
281 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/** * Interface representing the parameters required to create or update an agent. */
interface
AgentParams
{ name:
string
; description?:
string
; prompt:
string
; primaryModel:
string
; fallbackModels?:
string
[]; tools?:
string
[]; } export { AgentParams };