graphlit-client 1.0.20241212004 → 1.0.20241213001

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.
@@ -2100,6 +2100,7 @@ exports.CompleteConversation = (0, graphql_tag_1.default) `
2100
2100
  formattedObservables
2101
2101
  formattedInstructions
2102
2102
  formattedTools
2103
+ specification
2103
2104
  messages {
2104
2105
  role
2105
2106
  author
@@ -2407,6 +2408,7 @@ exports.ContinueConversation = (0, graphql_tag_1.default) `
2407
2408
  formattedObservables
2408
2409
  formattedInstructions
2409
2410
  formattedTools
2411
+ specification
2410
2412
  messages {
2411
2413
  role
2412
2414
  author
@@ -2761,6 +2763,7 @@ exports.FormatConversation = (0, graphql_tag_1.default) `
2761
2763
  formattedObservables
2762
2764
  formattedInstructions
2763
2765
  formattedTools
2766
+ specification
2764
2767
  messages {
2765
2768
  role
2766
2769
  author
@@ -3483,6 +3486,7 @@ exports.PromptConversation = (0, graphql_tag_1.default) `
3483
3486
  formattedObservables
3484
3487
  formattedInstructions
3485
3488
  formattedTools
3489
+ specification
3486
3490
  messages {
3487
3491
  role
3488
3492
  author
@@ -7007,7 +7011,6 @@ exports.GetSpecification = (0, graphql_tag_1.default) `
7007
7011
  embedCitations
7008
7012
  flattenCitations
7009
7013
  enableFacets
7010
- disableGuardrails
7011
7014
  messagesWeight
7012
7015
  contentsWeight
7013
7016
  }
@@ -7313,7 +7316,6 @@ exports.QuerySpecifications = (0, graphql_tag_1.default) `
7313
7316
  embedCitations
7314
7317
  flattenCitations
7315
7318
  enableFacets
7316
- disableGuardrails
7317
7319
  messagesWeight
7318
7320
  contentsWeight
7319
7321
  }
@@ -1816,6 +1816,8 @@ export type ConversationDetails = {
1816
1816
  sourceCount?: Maybe<Scalars['Int']['output']>;
1817
1817
  /** JSON representation of the source to content mapping. */
1818
1818
  sources?: Maybe<Scalars['String']['output']>;
1819
+ /** JSON representation of the LLM specification. */
1820
+ specification?: Maybe<Scalars['String']['output']>;
1819
1821
  /** Whether the LLM supports tool calling. */
1820
1822
  supportsToolCalling?: Maybe<Scalars['Boolean']['output']>;
1821
1823
  /** The LLM prompt token limit. */
@@ -1931,8 +1933,6 @@ export type ConversationStrategy = {
1931
1933
  __typename?: 'ConversationStrategy';
1932
1934
  /** The weight of contents within prompt context, in range [0.0 - 1.0]. */
1933
1935
  contentsWeight?: Maybe<Scalars['Float']['output']>;
1934
- /** Disable JSON guardrails, if system prompt asks for non-JSON output format. */
1935
- disableGuardrails?: Maybe<Scalars['Boolean']['output']>;
1936
1936
  /** Embed content citations into completed converation messages. */
1937
1937
  embedCitations?: Maybe<Scalars['Boolean']['output']>;
1938
1938
  /** Provide content facets with completed conversation. */
@@ -1950,8 +1950,6 @@ export type ConversationStrategy = {
1950
1950
  export type ConversationStrategyInput = {
1951
1951
  /** The weight of contents within prompt context, in range [0.0 - 1.0]. */
1952
1952
  contentsWeight?: InputMaybe<Scalars['Float']['input']>;
1953
- /** Disable JSON guardrails, if system prompt asks for non-JSON output format. */
1954
- disableGuardrails?: InputMaybe<Scalars['Boolean']['input']>;
1955
1953
  /** Embed content citations into completed converation messages. */
1956
1954
  embedCitations?: InputMaybe<Scalars['Boolean']['input']>;
1957
1955
  /** Provide content facets with completed conversation. */
@@ -1976,8 +1974,6 @@ export declare enum ConversationStrategyTypes {
1976
1974
  export type ConversationStrategyUpdateInput = {
1977
1975
  /** The weight of contents within prompt context, in range [0.0 - 1.0]. */
1978
1976
  contentsWeight?: InputMaybe<Scalars['Float']['input']>;
1979
- /** Disable JSON guardrails, if system prompt asks for non-JSON output format. */
1980
- disableGuardrails?: InputMaybe<Scalars['Boolean']['input']>;
1981
1977
  /** Embed content citations into completed converation messages. */
1982
1978
  embedCitations?: InputMaybe<Scalars['Boolean']['input']>;
1983
1979
  /** Provide content facets with completed conversation. */
@@ -14376,6 +14372,7 @@ export type CompleteConversationMutation = {
14376
14372
  formattedObservables?: string | null;
14377
14373
  formattedInstructions?: string | null;
14378
14374
  formattedTools?: string | null;
14375
+ specification?: string | null;
14379
14376
  messages?: Array<{
14380
14377
  __typename?: 'ConversationMessage';
14381
14378
  role: ConversationRoleTypes;
@@ -14709,6 +14706,7 @@ export type ContinueConversationMutation = {
14709
14706
  formattedObservables?: string | null;
14710
14707
  formattedInstructions?: string | null;
14711
14708
  formattedTools?: string | null;
14709
+ specification?: string | null;
14712
14710
  messages?: Array<{
14713
14711
  __typename?: 'ConversationMessage';
14714
14712
  role: ConversationRoleTypes;
@@ -15104,6 +15102,7 @@ export type FormatConversationMutation = {
15104
15102
  formattedObservables?: string | null;
15105
15103
  formattedInstructions?: string | null;
15106
15104
  formattedTools?: string | null;
15105
+ specification?: string | null;
15107
15106
  messages?: Array<{
15108
15107
  __typename?: 'ConversationMessage';
15109
15108
  role: ConversationRoleTypes;
@@ -15917,6 +15916,7 @@ export type PromptConversationMutation = {
15917
15916
  formattedObservables?: string | null;
15918
15917
  formattedInstructions?: string | null;
15919
15918
  formattedTools?: string | null;
15919
+ specification?: string | null;
15920
15920
  messages?: Array<{
15921
15921
  __typename?: 'ConversationMessage';
15922
15922
  role: ConversationRoleTypes;
@@ -20186,7 +20186,6 @@ export type GetSpecificationQuery = {
20186
20186
  embedCitations?: boolean | null;
20187
20187
  flattenCitations?: boolean | null;
20188
20188
  enableFacets?: boolean | null;
20189
- disableGuardrails?: boolean | null;
20190
20189
  messagesWeight?: number | null;
20191
20190
  contentsWeight?: number | null;
20192
20191
  } | null;
@@ -20529,7 +20528,6 @@ export type QuerySpecificationsQuery = {
20529
20528
  embedCitations?: boolean | null;
20530
20529
  flattenCitations?: boolean | null;
20531
20530
  enableFacets?: boolean | null;
20532
- disableGuardrails?: boolean | null;
20533
20531
  messagesWeight?: number | null;
20534
20532
  contentsWeight?: number | null;
20535
20533
  } | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphlit-client",
3
- "version": "1.0.20241212004",
3
+ "version": "1.0.20241213001",
4
4
  "description": "Graphlit API TypeScript Client",
5
5
  "main": "dist/client.js",
6
6
  "types": "dist/client.d.ts",