Initial commit: KidsAI Explorer with complete functionality
- Complete KidsAI Explorer application - Multi-language support (English/German) - AI-powered educational guidance using OpenAI - Interactive chat interface for children - Proper placeholder translation fixes - Mobile-responsive design - Educational framework for critical thinking
This commit is contained in:
95
node_modules/openai/resources/beta/assistants.js
generated
vendored
Normal file
95
node_modules/openai/resources/beta/assistants.js
generated
vendored
Normal file
@@ -0,0 +1,95 @@
|
||||
"use strict";
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.Assistants = void 0;
|
||||
const resource_1 = require("../../core/resource.js");
|
||||
const pagination_1 = require("../../core/pagination.js");
|
||||
const headers_1 = require("../../internal/headers.js");
|
||||
const path_1 = require("../../internal/utils/path.js");
|
||||
class Assistants extends resource_1.APIResource {
|
||||
/**
|
||||
* Create an assistant with a model and instructions.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* const assistant = await client.beta.assistants.create({
|
||||
* model: 'gpt-4o',
|
||||
* });
|
||||
* ```
|
||||
*/
|
||||
create(body, options) {
|
||||
return this._client.post('/assistants', {
|
||||
body,
|
||||
...options,
|
||||
headers: (0, headers_1.buildHeaders)([{ 'OpenAI-Beta': 'assistants=v2' }, options?.headers]),
|
||||
});
|
||||
}
|
||||
/**
|
||||
* Retrieves an assistant.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* const assistant = await client.beta.assistants.retrieve(
|
||||
* 'assistant_id',
|
||||
* );
|
||||
* ```
|
||||
*/
|
||||
retrieve(assistantID, options) {
|
||||
return this._client.get((0, path_1.path) `/assistants/${assistantID}`, {
|
||||
...options,
|
||||
headers: (0, headers_1.buildHeaders)([{ 'OpenAI-Beta': 'assistants=v2' }, options?.headers]),
|
||||
});
|
||||
}
|
||||
/**
|
||||
* Modifies an assistant.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* const assistant = await client.beta.assistants.update(
|
||||
* 'assistant_id',
|
||||
* );
|
||||
* ```
|
||||
*/
|
||||
update(assistantID, body, options) {
|
||||
return this._client.post((0, path_1.path) `/assistants/${assistantID}`, {
|
||||
body,
|
||||
...options,
|
||||
headers: (0, headers_1.buildHeaders)([{ 'OpenAI-Beta': 'assistants=v2' }, options?.headers]),
|
||||
});
|
||||
}
|
||||
/**
|
||||
* Returns a list of assistants.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* // Automatically fetches more pages as needed.
|
||||
* for await (const assistant of client.beta.assistants.list()) {
|
||||
* // ...
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
list(query = {}, options) {
|
||||
return this._client.getAPIList('/assistants', (pagination_1.CursorPage), {
|
||||
query,
|
||||
...options,
|
||||
headers: (0, headers_1.buildHeaders)([{ 'OpenAI-Beta': 'assistants=v2' }, options?.headers]),
|
||||
});
|
||||
}
|
||||
/**
|
||||
* Delete an assistant.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* const assistantDeleted =
|
||||
* await client.beta.assistants.delete('assistant_id');
|
||||
* ```
|
||||
*/
|
||||
delete(assistantID, options) {
|
||||
return this._client.delete((0, path_1.path) `/assistants/${assistantID}`, {
|
||||
...options,
|
||||
headers: (0, headers_1.buildHeaders)([{ 'OpenAI-Beta': 'assistants=v2' }, options?.headers]),
|
||||
});
|
||||
}
|
||||
}
|
||||
exports.Assistants = Assistants;
|
||||
//# sourceMappingURL=assistants.js.map
|
||||
Reference in New Issue
Block a user