Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

feat(api): update via SDK Studio #37

Merged
merged 1 commit into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
configured_endpoints: 10
configured_endpoints: 12
9 changes: 9 additions & 0 deletions api.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ Methods:

# InferencePipelines

Types:

- <code><a href="./src/resources/inference-pipelines/inference-pipelines.ts">InferencePipelineRetrieveResponse</a></code>

Methods:

- <code title="get /inference-pipelines/{inferencePipelineId}">client.inferencePipelines.<a href="./src/resources/inference-pipelines/inference-pipelines.ts">retrieve</a>(inferencePipelineId) -> InferencePipelineRetrieveResponse</code>
- <code title="delete /inference-pipelines/{inferencePipelineId}">client.inferencePipelines.<a href="./src/resources/inference-pipelines/inference-pipelines.ts">delete</a>(inferencePipelineId) -> void</code>

## Data

Types:
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ export namespace Openlayer {
export import Commits = API.Commits;

export import InferencePipelines = API.InferencePipelines;
export import InferencePipelineRetrieveResponse = API.InferencePipelineRetrieveResponse;

export import Storage = API.Storage;
}
Expand Down
5 changes: 4 additions & 1 deletion src/resources/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

export { Commits } from './commits/commits';
export { InferencePipelines } from './inference-pipelines/inference-pipelines';
export {
InferencePipelineRetrieveResponse,
InferencePipelines,
} from './inference-pipelines/inference-pipelines';
export {
ProjectCreateResponse,
ProjectListResponse,
Expand Down
2 changes: 1 addition & 1 deletion src/resources/inference-pipelines/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

export { DataStreamResponse, DataStreamParams, Data } from './data';
export { InferencePipelines } from './inference-pipelines';
export { InferencePipelineRetrieveResponse, InferencePipelines } from './inference-pipelines';
export { RowUpdateResponse, RowUpdateParams, Rows } from './rows';
export { TestResultListResponse, TestResultListParams, TestResults } from './test-results';
103 changes: 103 additions & 0 deletions src/resources/inference-pipelines/inference-pipelines.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

import { APIResource } from '../../resource';
import * as Core from '../../core';
import * as InferencePipelinesAPI from './inference-pipelines';
import * as DataAPI from './data';
import * as RowsAPI from './rows';
import * as TestResultsAPI from './test-results';
Expand All @@ -9,9 +11,110 @@ export class InferencePipelines extends APIResource {
data: DataAPI.Data = new DataAPI.Data(this._client);
rows: RowsAPI.Rows = new RowsAPI.Rows(this._client);
testResults: TestResultsAPI.TestResults = new TestResultsAPI.TestResults(this._client);

/**
* Retrieve inference pipeline.
*/
retrieve(
inferencePipelineId: string,
options?: Core.RequestOptions,
): Core.APIPromise<InferencePipelineRetrieveResponse> {
return this._client.get(`/inference-pipelines/${inferencePipelineId}`, options);
}

/**
* Delete inference pipeline.
*/
delete(inferencePipelineId: string, options?: Core.RequestOptions): Core.APIPromise<void> {
return this._client.delete(`/inference-pipelines/${inferencePipelineId}`, {
...options,
headers: { Accept: '*/*', ...options?.headers },
});
}
}

export interface InferencePipelineRetrieveResponse {
/**
* The inference pipeline id.
*/
id: string;

/**
* The creation date.
*/
dateCreated: string;

/**
* The last test evaluation date.
*/
dateLastEvaluated: string | null;

/**
* The last data sample received date.
*/
dateLastSampleReceived: string | null;

/**
* The next test evaluation date.
*/
dateOfNextEvaluation: string | null;

/**
* The last updated date.
*/
dateUpdated: string;

/**
* The inference pipeline description.
*/
description: string | null;

/**
* The number of tests failing.
*/
failingGoalCount: number;

links: InferencePipelineRetrieveResponse.Links;

/**
* The inference pipeline name.
*/
name: string;

/**
* The number of tests passing.
*/
passingGoalCount: number;

/**
* The project id.
*/
projectId: string;

/**
* The status of test evaluation for the inference pipeline.
*/
status: 'queued' | 'running' | 'paused' | 'failed' | 'completed' | 'unknown';

/**
* The status message of test evaluation for the inference pipeline.
*/
statusMessage: string | null;

/**
* The total number of tests.
*/
totalGoalCount: number;
}

export namespace InferencePipelineRetrieveResponse {
export interface Links {
app: string;
}
}

export namespace InferencePipelines {
export import InferencePipelineRetrieveResponse = InferencePipelinesAPI.InferencePipelineRetrieveResponse;
export import Data = DataAPI.Data;
export import DataStreamResponse = DataAPI.DataStreamResponse;
export import DataStreamParams = DataAPI.DataStreamParams;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

import Openlayer from 'openlayer';
import { Response } from 'node-fetch';

const openlayer = new Openlayer({
apiKey: 'My API Key',
baseURL: process.env['TEST_API_BASE_URL'] ?? 'http://127.0.0.1:4010',
});

describe('resource inferencePipelines', () => {
test('retrieve', async () => {
const responsePromise = openlayer.inferencePipelines.retrieve('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');
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('retrieve: request options instead of params are passed correctly', async () => {
// ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error
await expect(
openlayer.inferencePipelines.retrieve('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', {
path: '/_stainless_unknown_path',
}),
).rejects.toThrow(Openlayer.NotFoundError);
});

test('delete', async () => {
const responsePromise = openlayer.inferencePipelines.delete('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e');
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('delete: request options instead of params are passed correctly', async () => {
// ensure the request options are being passed correctly by passing an invalid HTTP method in order to cause an error
await expect(
openlayer.inferencePipelines.delete('182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e', {
path: '/_stainless_unknown_path',
}),
).rejects.toThrow(Openlayer.NotFoundError);
});
});