50 lines
2.0 KiB
JavaScript
Executable File
50 lines
2.0 KiB
JavaScript
Executable File
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
|
import { APIResource } from "../../../resource.mjs";
|
|
import { isRequestOptions } from "../../../core.mjs";
|
|
import * as MessagesAPI from "./messages.mjs";
|
|
import { Messages } from "./messages.mjs";
|
|
import { CursorPage } from "../../../pagination.mjs";
|
|
export class Completions extends APIResource {
|
|
constructor() {
|
|
super(...arguments);
|
|
this.messages = new MessagesAPI.Messages(this._client);
|
|
}
|
|
create(body, options) {
|
|
return this._client.post('/chat/completions', { body, ...options, stream: body.stream ?? false });
|
|
}
|
|
/**
|
|
* Get a stored chat completion. Only chat completions that have been created with
|
|
* the `store` parameter set to `true` will be returned.
|
|
*/
|
|
retrieve(completionId, options) {
|
|
return this._client.get(`/chat/completions/${completionId}`, options);
|
|
}
|
|
/**
|
|
* Modify a stored chat completion. Only chat completions that have been created
|
|
* with the `store` parameter set to `true` can be modified. Currently, the only
|
|
* supported modification is to update the `metadata` field.
|
|
*/
|
|
update(completionId, body, options) {
|
|
return this._client.post(`/chat/completions/${completionId}`, { body, ...options });
|
|
}
|
|
list(query = {}, options) {
|
|
if (isRequestOptions(query)) {
|
|
return this.list({}, query);
|
|
}
|
|
return this._client.getAPIList('/chat/completions', ChatCompletionsPage, { query, ...options });
|
|
}
|
|
/**
|
|
* Delete a stored chat completion. Only chat completions that have been created
|
|
* with the `store` parameter set to `true` can be deleted.
|
|
*/
|
|
del(completionId, options) {
|
|
return this._client.delete(`/chat/completions/${completionId}`, options);
|
|
}
|
|
}
|
|
export class ChatCompletionsPage extends CursorPage {
|
|
}
|
|
export class ChatCompletionStoreMessagesPage extends CursorPage {
|
|
}
|
|
Completions.ChatCompletionsPage = ChatCompletionsPage;
|
|
Completions.Messages = Messages;
|
|
//# sourceMappingURL=completions.mjs.map
|