@iblai/iblai-api 4.278.0-ai → 4.278.1-ai
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.
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/types/models/MentorCreate.d.ts +1 -1
- package/dist/types/models/PatchedMentorCreate.d.ts +1 -1
- package/package.json +1 -1
- package/sdk_schema.yml +3 -3
- package/src/core/OpenAPI.ts +1 -1
- package/src/models/MentorCreate.ts +1 -1
- package/src/models/PatchedMentorCreate.ts +1 -1
package/dist/index.cjs.js
CHANGED
package/dist/index.esm.js
CHANGED
package/dist/index.umd.js
CHANGED
|
@@ -156,7 +156,7 @@ export type MentorCreate = {
|
|
|
156
156
|
safety_response?: string;
|
|
157
157
|
disable_chathistory?: boolean;
|
|
158
158
|
/**
|
|
159
|
-
* Per-mentor toggle for stripping HTML markup from `payload.page_content` before it is envelope-wrapped and cached for the LLM. Defaults to False (raw HTML reaches the prompt). Set to True to strip markup, e.g. when pages embed inline JSON/CSS in
|
|
159
|
+
* Per-mentor toggle for stripping HTML markup from `payload.page_content` before it is envelope-wrapped and cached for the LLM. Defaults to False (raw HTML reaches the prompt). Set to True to strip markup, e.g. when pages embed inline JSON/CSS in script/style tags that bloats the context window. Nullable so the add-column migration is a no-op for existing rows during a rolling multi-server deploy; a NULL value is treated as False at read time.
|
|
160
160
|
*/
|
|
161
161
|
strip_page_content_html?: boolean | null;
|
|
162
162
|
enable_safety_system?: boolean;
|
|
@@ -156,7 +156,7 @@ export type PatchedMentorCreate = {
|
|
|
156
156
|
safety_response?: string;
|
|
157
157
|
disable_chathistory?: boolean;
|
|
158
158
|
/**
|
|
159
|
-
* Per-mentor toggle for stripping HTML markup from `payload.page_content` before it is envelope-wrapped and cached for the LLM. Defaults to False (raw HTML reaches the prompt). Set to True to strip markup, e.g. when pages embed inline JSON/CSS in
|
|
159
|
+
* Per-mentor toggle for stripping HTML markup from `payload.page_content` before it is envelope-wrapped and cached for the LLM. Defaults to False (raw HTML reaches the prompt). Set to True to strip markup, e.g. when pages embed inline JSON/CSS in script/style tags that bloats the context window. Nullable so the add-column migration is a no-op for existing rows during a rolling multi-server deploy; a NULL value is treated as False at read time.
|
|
160
160
|
*/
|
|
161
161
|
strip_page_content_html?: boolean | null;
|
|
162
162
|
enable_safety_system?: boolean;
|
package/package.json
CHANGED
package/sdk_schema.yml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
openapi: 3.0.3
|
|
2
2
|
info:
|
|
3
3
|
title: ibl-data-manager
|
|
4
|
-
version: 4.278.
|
|
4
|
+
version: 4.278.1-ai-plus
|
|
5
5
|
description: API for iblai
|
|
6
6
|
paths:
|
|
7
7
|
/access-check/{item_type}/{item_id}/:
|
|
@@ -97808,7 +97808,7 @@ components:
|
|
|
97808
97808
|
description: Per-mentor toggle for stripping HTML markup from `payload.page_content`
|
|
97809
97809
|
before it is envelope-wrapped and cached for the LLM. Defaults to False
|
|
97810
97810
|
(raw HTML reaches the prompt). Set to True to strip markup, e.g. when
|
|
97811
|
-
pages embed inline JSON/CSS in
|
|
97811
|
+
pages embed inline JSON/CSS in script/style tags that bloats the context
|
|
97812
97812
|
window. Nullable so the add-column migration is a no-op for existing rows
|
|
97813
97813
|
during a rolling multi-server deploy; a NULL value is treated as False
|
|
97814
97814
|
at read time.
|
|
@@ -105028,7 +105028,7 @@ components:
|
|
|
105028
105028
|
description: Per-mentor toggle for stripping HTML markup from `payload.page_content`
|
|
105029
105029
|
before it is envelope-wrapped and cached for the LLM. Defaults to False
|
|
105030
105030
|
(raw HTML reaches the prompt). Set to True to strip markup, e.g. when
|
|
105031
|
-
pages embed inline JSON/CSS in
|
|
105031
|
+
pages embed inline JSON/CSS in script/style tags that bloats the context
|
|
105032
105032
|
window. Nullable so the add-column migration is a no-op for existing rows
|
|
105033
105033
|
during a rolling multi-server deploy; a NULL value is treated as False
|
|
105034
105034
|
at read time.
|
package/src/core/OpenAPI.ts
CHANGED
|
@@ -160,7 +160,7 @@ export type MentorCreate = {
|
|
|
160
160
|
safety_response?: string;
|
|
161
161
|
disable_chathistory?: boolean;
|
|
162
162
|
/**
|
|
163
|
-
* Per-mentor toggle for stripping HTML markup from `payload.page_content` before it is envelope-wrapped and cached for the LLM. Defaults to False (raw HTML reaches the prompt). Set to True to strip markup, e.g. when pages embed inline JSON/CSS in
|
|
163
|
+
* Per-mentor toggle for stripping HTML markup from `payload.page_content` before it is envelope-wrapped and cached for the LLM. Defaults to False (raw HTML reaches the prompt). Set to True to strip markup, e.g. when pages embed inline JSON/CSS in script/style tags that bloats the context window. Nullable so the add-column migration is a no-op for existing rows during a rolling multi-server deploy; a NULL value is treated as False at read time.
|
|
164
164
|
*/
|
|
165
165
|
strip_page_content_html?: boolean | null;
|
|
166
166
|
enable_safety_system?: boolean;
|
|
@@ -160,7 +160,7 @@ export type PatchedMentorCreate = {
|
|
|
160
160
|
safety_response?: string;
|
|
161
161
|
disable_chathistory?: boolean;
|
|
162
162
|
/**
|
|
163
|
-
* Per-mentor toggle for stripping HTML markup from `payload.page_content` before it is envelope-wrapped and cached for the LLM. Defaults to False (raw HTML reaches the prompt). Set to True to strip markup, e.g. when pages embed inline JSON/CSS in
|
|
163
|
+
* Per-mentor toggle for stripping HTML markup from `payload.page_content` before it is envelope-wrapped and cached for the LLM. Defaults to False (raw HTML reaches the prompt). Set to True to strip markup, e.g. when pages embed inline JSON/CSS in script/style tags that bloats the context window. Nullable so the add-column migration is a no-op for existing rows during a rolling multi-server deploy; a NULL value is treated as False at read time.
|
|
164
164
|
*/
|
|
165
165
|
strip_page_content_html?: boolean | null;
|
|
166
166
|
enable_safety_system?: boolean;
|