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:
23
node_modules/openai/resources/responses/input-items.mjs
generated
vendored
Normal file
23
node_modules/openai/resources/responses/input-items.mjs
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
|
||||
import { APIResource } from "../../core/resource.mjs";
|
||||
import { CursorPage } from "../../core/pagination.mjs";
|
||||
import { path } from "../../internal/utils/path.mjs";
|
||||
export class InputItems extends APIResource {
|
||||
/**
|
||||
* Returns a list of input items for a given response.
|
||||
*
|
||||
* @example
|
||||
* ```ts
|
||||
* // Automatically fetches more pages as needed.
|
||||
* for await (const responseItem of client.responses.inputItems.list(
|
||||
* 'response_id',
|
||||
* )) {
|
||||
* // ...
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
list(responseID, query = {}, options) {
|
||||
return this._client.getAPIList(path `/responses/${responseID}/input_items`, (CursorPage), { query, ...options });
|
||||
}
|
||||
}
|
||||
//# sourceMappingURL=input-items.mjs.map
|
||||
Reference in New Issue
Block a user