UNPKG
@meldscience/meld
Version:
latest (0.1.0)
0.1.0
pipeable one-shot prompt scripting toolkit
@meldscience/meld
/
dist
/
providers
/
types.d.ts
8 lines
(7 loc)
•
164 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
export
interface
AIProvider
{
sendPrompt
(
params
: {
model
:
string
; systemPrompt?:
string
;
userPrompt
:
string
; }): Promise<
string
>; }