graphlit-client 1.0.20250224001 → 1.0.20250224002

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.
@@ -310,6 +310,8 @@ export type AnthropicModelProperties = {
310
310
  chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
311
311
  /** The limit of tokens generated by prompt completion. */
312
312
  completionTokenLimit?: Maybe<Scalars['Int']['output']>;
313
+ /** Whether Claude's extended thinking is enabled. Applies to Claude 3.7 or higher. */
314
+ enableThinking?: Maybe<Scalars['Boolean']['output']>;
313
315
  /** The Anthropic API key, if using developer's own account. */
314
316
  key?: Maybe<Scalars['String']['output']>;
315
317
  /** The Anthropic model, or custom, when using developer's own account. */
@@ -320,13 +322,19 @@ export type AnthropicModelProperties = {
320
322
  probability?: Maybe<Scalars['Float']['output']>;
321
323
  /** The model temperature. */
322
324
  temperature?: Maybe<Scalars['Float']['output']>;
325
+ /** The limit of thinking tokens allowed for Claude's internal reasoning process. */
326
+ thinkingTokenLimit?: Maybe<Scalars['Int']['output']>;
323
327
  /** The number of tokens which can provided to the Anthropic model, if using developer's own account. */
324
328
  tokenLimit?: Maybe<Scalars['Int']['output']>;
325
329
  };
326
330
  /** Represents Anthropic model properties. */
327
331
  export type AnthropicModelPropertiesInput = {
332
+ /** The limit of tokens per embedded text chunk, defaults to 600. */
333
+ chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
328
334
  /** The limit of tokens generated by prompt completion. */
329
335
  completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
336
+ /** Whether Claude's extended thinking is enabled. Applies to Claude 3.7 or higher. */
337
+ enableThinking?: InputMaybe<Scalars['Boolean']['input']>;
330
338
  /** The Anthropic API key, if using developer's own account. */
331
339
  key?: InputMaybe<Scalars['String']['input']>;
332
340
  /** The Anthropic model, or custom, when using developer's own account. */
@@ -337,13 +345,19 @@ export type AnthropicModelPropertiesInput = {
337
345
  probability?: InputMaybe<Scalars['Float']['input']>;
338
346
  /** The model temperature. */
339
347
  temperature?: InputMaybe<Scalars['Float']['input']>;
348
+ /** The limit of thinking tokens allowed for Claude's internal reasoning process. */
349
+ thinkingTokenLimit?: InputMaybe<Scalars['Int']['input']>;
340
350
  /** The number of tokens which can provided to the Anthropic model, if using developer's own account. */
341
351
  tokenLimit?: InputMaybe<Scalars['Int']['input']>;
342
352
  };
343
353
  /** Represents Anthropic model properties. */
344
354
  export type AnthropicModelPropertiesUpdateInput = {
355
+ /** The limit of tokens per embedded text chunk, defaults to 600. */
356
+ chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
345
357
  /** The limit of tokens generated by prompt completion. */
346
358
  completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
359
+ /** Whether Claude's extended thinking is enabled. Applies to Claude 3.7 or higher. */
360
+ enableThinking?: InputMaybe<Scalars['Boolean']['input']>;
347
361
  /** The Anthropic API key, if using developer's own account. */
348
362
  key?: InputMaybe<Scalars['String']['input']>;
349
363
  /** The Anthropic model, or custom, when using developer's own account. */
@@ -354,6 +368,8 @@ export type AnthropicModelPropertiesUpdateInput = {
354
368
  probability?: InputMaybe<Scalars['Float']['input']>;
355
369
  /** The model temperature. */
356
370
  temperature?: InputMaybe<Scalars['Float']['input']>;
371
+ /** The limit of thinking tokens allowed for Claude's internal reasoning process. */
372
+ thinkingTokenLimit?: InputMaybe<Scalars['Int']['input']>;
357
373
  /** The number of tokens which can provided to the Anthropic model, if using developer's own account. */
358
374
  tokenLimit?: InputMaybe<Scalars['Int']['input']>;
359
375
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20250224001",
3
+ "version": "1.0.20250224002",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",