@discomedia/utils 1.0.55 → 1.0.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -258,7 +258,7 @@ const safeJSON = (text) => {
258
258
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
259
259
  const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
260
260
 
261
- const VERSION = '6.16.0'; // x-release-please-version
261
+ const VERSION = '6.17.0'; // x-release-please-version
262
262
 
263
263
  // File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
264
264
  const isRunningInBrowser = () => {
@@ -3551,12 +3551,7 @@ class Assistants extends APIResource {
3551
3551
  /**
3552
3552
  * Create an assistant with a model and instructions.
3553
3553
  *
3554
- * @example
3555
- * ```ts
3556
- * const assistant = await client.beta.assistants.create({
3557
- * model: 'gpt-4o',
3558
- * });
3559
- * ```
3554
+ * @deprecated
3560
3555
  */
3561
3556
  create(body, options) {
3562
3557
  return this._client.post('/assistants', {
@@ -3568,12 +3563,7 @@ class Assistants extends APIResource {
3568
3563
  /**
3569
3564
  * Retrieves an assistant.
3570
3565
  *
3571
- * @example
3572
- * ```ts
3573
- * const assistant = await client.beta.assistants.retrieve(
3574
- * 'assistant_id',
3575
- * );
3576
- * ```
3566
+ * @deprecated
3577
3567
  */
3578
3568
  retrieve(assistantID, options) {
3579
3569
  return this._client.get(path `/assistants/${assistantID}`, {
@@ -3584,12 +3574,7 @@ class Assistants extends APIResource {
3584
3574
  /**
3585
3575
  * Modifies an assistant.
3586
3576
  *
3587
- * @example
3588
- * ```ts
3589
- * const assistant = await client.beta.assistants.update(
3590
- * 'assistant_id',
3591
- * );
3592
- * ```
3577
+ * @deprecated
3593
3578
  */
3594
3579
  update(assistantID, body, options) {
3595
3580
  return this._client.post(path `/assistants/${assistantID}`, {
@@ -3601,13 +3586,7 @@ class Assistants extends APIResource {
3601
3586
  /**
3602
3587
  * Returns a list of assistants.
3603
3588
  *
3604
- * @example
3605
- * ```ts
3606
- * // Automatically fetches more pages as needed.
3607
- * for await (const assistant of client.beta.assistants.list()) {
3608
- * // ...
3609
- * }
3610
- * ```
3589
+ * @deprecated
3611
3590
  */
3612
3591
  list(query = {}, options) {
3613
3592
  return this._client.getAPIList('/assistants', (CursorPage), {
@@ -3619,11 +3598,7 @@ class Assistants extends APIResource {
3619
3598
  /**
3620
3599
  * Delete an assistant.
3621
3600
  *
3622
- * @example
3623
- * ```ts
3624
- * const assistantDeleted =
3625
- * await client.beta.assistants.delete('assistant_id');
3626
- * ```
3601
+ * @deprecated
3627
3602
  */
3628
3603
  delete(assistantID, options) {
3629
3604
  return this._client.delete(path `/assistants/${assistantID}`, {
@@ -5097,8 +5072,8 @@ Evals.Runs = Runs;
5097
5072
  let Files$1 = class Files extends APIResource {
5098
5073
  /**
5099
5074
  * Upload a file that can be used across various endpoints. Individual files can be
5100
- * up to 512 MB, and the size of all files uploaded by one organization can be up
5101
- * to 1 TB.
5075
+ * up to 512 MB, and each project can store up to 2.5 TB of files in total. There
5076
+ * is no organization-wide storage limit.
5102
5077
  *
5103
5078
  * - The Assistants API supports files up to 2 million tokens and of specific file
5104
5079
  * types. See the