Skip to content

Commit d214c13

Browse files
chore(internal): codegen related update
1 parent 4b6a798 commit d214c13

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

tests/api-resources/chat/completions.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const client = new LlamaAPIClient({
88
});
99

1010
describe('resource completions', () => {
11-
// skipped: tests are disabled for the time being
11+
// Prism tests are disabled
1212
test.skip('create: only required params', async () => {
1313
const responsePromise = client.chat.completions.create({
1414
messages: [{ content: 'string', role: 'user' }],
@@ -23,7 +23,7 @@ describe('resource completions', () => {
2323
expect(dataAndResponse.response).toBe(rawResponse);
2424
});
2525

26-
// skipped: tests are disabled for the time being
26+
// Prism tests are disabled
2727
test.skip('create: required and optional params', async () => {
2828
const response = await client.chat.completions.create({
2929
messages: [{ content: 'string', role: 'user' }],

tests/api-resources/models.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const client = new LlamaAPIClient({
88
});
99

1010
describe('resource models', () => {
11-
// skipped: tests are disabled for the time being
11+
// Prism tests are disabled
1212
test.skip('retrieve', async () => {
1313
const responsePromise = client.models.retrieve('Llama-3.3-70B-Instruct');
1414
const rawResponse = await responsePromise.asResponse();
@@ -20,7 +20,7 @@ describe('resource models', () => {
2020
expect(dataAndResponse.response).toBe(rawResponse);
2121
});
2222

23-
// skipped: tests are disabled for the time being
23+
// Prism tests are disabled
2424
test.skip('list', async () => {
2525
const responsePromise = client.models.list();
2626
const rawResponse = await responsePromise.asResponse();

tests/api-resources/moderations.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const client = new LlamaAPIClient({
88
});
99

1010
describe('resource moderations', () => {
11-
// skipped: tests are disabled for the time being
11+
// Prism tests are disabled
1212
test.skip('create: only required params', async () => {
1313
const responsePromise = client.moderations.create({ messages: [{ content: 'string', role: 'user' }] });
1414
const rawResponse = await responsePromise.asResponse();
@@ -20,7 +20,7 @@ describe('resource moderations', () => {
2020
expect(dataAndResponse.response).toBe(rawResponse);
2121
});
2222

23-
// skipped: tests are disabled for the time being
23+
// Prism tests are disabled
2424
test.skip('create: required and optional params', async () => {
2525
const response = await client.moderations.create({
2626
messages: [{ content: 'string', role: 'user' }],

0 commit comments

Comments
 (0)