UNPKG
auto-translatr
Version:
latest (1.0.1)
1.0.1
1.0.0
An automatic translation library
github.com/Sheyk/auto-translatr
Sheyk/auto-translatr
auto-translatr
/
dist
/
openaiClient.d.ts
12 lines
(11 loc)
•
264 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
interface
OpenAIResponse
{
choices
:
Array
<{
message
: {
content
:
string
; }; }>;
error
?: {
message
:
string
; }; }
export
declare
function
prompt
(
text
:
string
,
model
:
string
,
apiKey
:
string
):
Promise
<
string
>;