-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathcompletions.test.ts
45 lines (41 loc) · 1.39 KB
/
completions.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import OpenAI from 'openai';
import { Response } from 'node-fetch';
const client = new OpenAI({
apiKey: 'My API Key',
baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010',
});
describe('resource completions', () => {
test('create: only required params', async () => {
const responsePromise = client.completions.create({ model: 'string', prompt: 'This is a test.' });
const rawResponse = await responsePromise.asResponse();
expect(rawResponse).toBeInstanceOf(Response);
const response = await responsePromise;
expect(response).not.toBeInstanceOf(Response);
const dataAndResponse = await responsePromise.withResponse();
expect(dataAndResponse.data).toBe(response);
expect(dataAndResponse.response).toBe(rawResponse);
});
test('create: required and optional params', async () => {
const response = await client.completions.create({
model: 'string',
prompt: 'This is a test.',
best_of: 0,
echo: true,
frequency_penalty: -2,
logit_bias: { foo: 0 },
logprobs: 0,
max_tokens: 16,
n: 1,
presence_penalty: -2,
seed: 0,
stop: '\n',
stream: false,
stream_options: { include_usage: true },
suffix: 'test.',
temperature: 1,
top_p: 1,
user: 'user-1234',
});
});
});