librechat-data-provider 0.8.507 → 0.8.509
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/{data-service-D7mtXwG5.mjs → data-service-BsdHkdKS.mjs} +86 -14
- package/dist/data-service-BsdHkdKS.mjs.map +1 -0
- package/dist/{data-service-CCdWvcRd.js → data-service-XTxx76uB.js} +91 -13
- package/dist/data-service-XTxx76uB.js.map +1 -0
- package/dist/index.js +17 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +17 -2
- package/dist/index.mjs.map +1 -1
- package/dist/react-query/index.js +1 -1
- package/dist/react-query/index.mjs +1 -1
- package/dist/types/api-endpoints.d.ts +5 -0
- package/dist/types/bedrock.d.ts +5 -0
- package/dist/types/config.d.ts +121 -0
- package/dist/types/data-service.d.ts +7 -2
- package/dist/types/generate.d.ts +2 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types/keys.d.ts +1 -0
- package/dist/types/models.d.ts +12 -0
- package/dist/types/schemas.d.ts +55 -4
- package/dist/types/types/mutations.d.ts +5 -5
- package/dist/types/types.d.ts +4 -0
- package/package.json +1 -1
- package/dist/data-service-CCdWvcRd.js.map +0 -1
- package/dist/data-service-D7mtXwG5.mjs.map +0 -1
|
@@ -937,7 +937,15 @@ const tMessageSchema = z.object({
|
|
|
937
937
|
* edits to the skill's `alwaysApply` flag (the user bubble reflects
|
|
938
938
|
* what actually ran, not the current catalog).
|
|
939
939
|
*/
|
|
940
|
-
alwaysAppliedSkills: z.array(z.string()).optional()
|
|
940
|
+
alwaysAppliedSkills: z.array(z.string()).optional(),
|
|
941
|
+
/**
|
|
942
|
+
* Verbatim excerpts the user quoted (via the "Add to chat" selection
|
|
943
|
+
* popup) to reference on this turn. UI metadata that `MessageQuotes`
|
|
944
|
+
* renders above the user bubble so the references persist on reload. The
|
|
945
|
+
* excerpts are merged into the user message text sent to the model at
|
|
946
|
+
* request time and counted in the user message token count.
|
|
947
|
+
*/
|
|
948
|
+
quotes: z.array(z.string()).optional()
|
|
941
949
|
});
|
|
942
950
|
const coerceNumber = z.union([z.number(), z.string()]).transform((val) => {
|
|
943
951
|
if (typeof val === "string") return val.trim() === "" ? void 0 : parseFloat(val);
|
|
@@ -999,6 +1007,7 @@ const tConversationSchema = z.object({
|
|
|
999
1007
|
effort: eAnthropicEffortSchema.optional().nullable(),
|
|
1000
1008
|
thinkingDisplay: eThinkingDisplaySchema.optional().nullable(),
|
|
1001
1009
|
web_search: z.boolean().optional(),
|
|
1010
|
+
url_context: z.boolean().optional(),
|
|
1002
1011
|
disableStreaming: z.boolean().optional(),
|
|
1003
1012
|
assistant_id: z.string().optional(),
|
|
1004
1013
|
agent_id: z.string().optional(),
|
|
@@ -1089,6 +1098,8 @@ const tQueryParamsSchema = tConversationSchema.pick({
|
|
|
1089
1098
|
useResponsesApi: true,
|
|
1090
1099
|
/** @endpoints openAI, anthropic, google */
|
|
1091
1100
|
web_search: true,
|
|
1101
|
+
/** @endpoints google */
|
|
1102
|
+
url_context: true,
|
|
1092
1103
|
/** @endpoints openAI, custom, azureOpenAI */
|
|
1093
1104
|
disableStreaming: true,
|
|
1094
1105
|
/** @endpoints google, anthropic, bedrock */
|
|
@@ -1186,6 +1197,7 @@ const googleBaseSchema = tConversationSchema.pick({
|
|
|
1186
1197
|
thinkingBudget: true,
|
|
1187
1198
|
thinkingLevel: true,
|
|
1188
1199
|
web_search: true,
|
|
1200
|
+
url_context: true,
|
|
1189
1201
|
fileTokenLimit: true,
|
|
1190
1202
|
iconURL: true,
|
|
1191
1203
|
greeting: true,
|
|
@@ -1212,7 +1224,8 @@ const googleGenConfigSchema = z.object({
|
|
|
1212
1224
|
thinkingBudget: coerceNumber.optional(),
|
|
1213
1225
|
thinkingLevel: z.string().optional()
|
|
1214
1226
|
}).optional(),
|
|
1215
|
-
web_search: z.boolean().optional()
|
|
1227
|
+
web_search: z.boolean().optional(),
|
|
1228
|
+
url_context: z.boolean().optional()
|
|
1216
1229
|
}).strip().optional();
|
|
1217
1230
|
function removeNullishValues(obj, removeEmptyStrings) {
|
|
1218
1231
|
const newObj = { ...obj };
|
|
@@ -2437,10 +2450,15 @@ const messagesArtifacts = (messageId) => `${messagesRoot}/artifact/${messageId}`
|
|
|
2437
2450
|
const messagesBranch = () => `${messagesRoot}/branch`;
|
|
2438
2451
|
const shareRoot = `${BASE_URL}/api/share`;
|
|
2439
2452
|
const shareMessages = (shareId) => `${shareRoot}/${shareId}`;
|
|
2453
|
+
const sharedStartupConfig = (shareId) => `${shareMessages(shareId)}/config`;
|
|
2440
2454
|
const getSharedLink$1 = (conversationId) => `${shareRoot}/link/${conversationId}`;
|
|
2441
2455
|
const getSharedLinks = (pageSize, sortBy, sortDirection, search, cursor) => `${shareRoot}?pageSize=${pageSize}&sortBy=${sortBy}&sortDirection=${sortDirection}${search ? `&search=${search}` : ""}${cursor ? `&cursor=${cursor}` : ""}`;
|
|
2442
2456
|
const createSharedLink$1 = (conversationId) => `${shareRoot}/${conversationId}`;
|
|
2443
2457
|
const updateSharedLink$1 = (shareId) => `${shareRoot}/${shareId}`;
|
|
2458
|
+
/** Share-scoped file routes: serve snapshotted files via shared-link permission. */
|
|
2459
|
+
const sharedFile = (shareId, fileId) => `${shareRoot}/${shareId}/files/${encodeURIComponent(fileId)}`;
|
|
2460
|
+
const sharedFileDownload = (shareId, fileId) => `${sharedFile(shareId, fileId)}/download`;
|
|
2461
|
+
const sharedFilePreview = (shareId, fileId) => `${sharedFile(shareId, fileId)}/preview`;
|
|
2444
2462
|
const keysEndpoint = `${BASE_URL}/api/keys`;
|
|
2445
2463
|
const keys = () => keysEndpoint;
|
|
2446
2464
|
const userKeyQuery$1 = (name) => `${keysEndpoint}?name=${name}`;
|
|
@@ -3602,6 +3620,10 @@ const endpointSchema = baseEndpointSchema.merge(z.object({
|
|
|
3602
3620
|
defaultParamsEndpoint: z.string().default("custom"),
|
|
3603
3621
|
reasoningFormat: eReasoningParameterFormatSchema.optional(),
|
|
3604
3622
|
reasoningKey: eReasoningResponseKeySchema.optional(),
|
|
3623
|
+
/** Replays `reasoning_content` within a run's tool-call turns (e.g. Xiaomi MiMo, Kimi). */
|
|
3624
|
+
includeReasoningContent: z.boolean().optional(),
|
|
3625
|
+
/** Also reconstructs `reasoning_content` from persisted history across turns (implies `includeReasoningContent`). */
|
|
3626
|
+
includeReasoningHistory: z.boolean().optional(),
|
|
3605
3627
|
paramDefinitions: z.array(paramDefinitionSchema).optional()
|
|
3606
3628
|
}).strict().optional(),
|
|
3607
3629
|
directEndpoint: z.boolean().optional(),
|
|
@@ -3858,6 +3880,8 @@ const interfaceSchema = z.object({
|
|
|
3858
3880
|
marketplace: z.object({ use: z.boolean().optional() }).optional(),
|
|
3859
3881
|
fileSearch: z.boolean().optional(),
|
|
3860
3882
|
fileCitations: z.boolean().optional(),
|
|
3883
|
+
/** Tool keys (and `'mcp'` or an MCP server name) pinned to the prompt bar by default */
|
|
3884
|
+
defaultPinnedTools: z.array(z.string()).optional(),
|
|
3861
3885
|
buildInfo: z.boolean().optional(),
|
|
3862
3886
|
remoteAgents: z.object({
|
|
3863
3887
|
use: z.boolean().optional(),
|
|
@@ -3875,7 +3899,8 @@ const interfaceSchema = z.object({
|
|
|
3875
3899
|
sharedLinks: z.union([z.boolean(), z.object({
|
|
3876
3900
|
create: z.boolean().optional(),
|
|
3877
3901
|
share: z.boolean().optional(),
|
|
3878
|
-
public: z.boolean().optional()
|
|
3902
|
+
public: z.boolean().optional(),
|
|
3903
|
+
snapshotFiles: z.boolean().optional()
|
|
3879
3904
|
})]).optional()
|
|
3880
3905
|
}).default({
|
|
3881
3906
|
modelSelect: true,
|
|
@@ -3933,7 +3958,8 @@ const interfaceSchema = z.object({
|
|
|
3933
3958
|
sharedLinks: {
|
|
3934
3959
|
create: true,
|
|
3935
3960
|
share: true,
|
|
3936
|
-
public: true
|
|
3961
|
+
public: true,
|
|
3962
|
+
snapshotFiles: true
|
|
3937
3963
|
}
|
|
3938
3964
|
});
|
|
3939
3965
|
const turnstileOptionsSchema = z.object({
|
|
@@ -4885,7 +4911,7 @@ let TTSProviders = /* @__PURE__ */ function(TTSProviders) {
|
|
|
4885
4911
|
/** Enum for app-wide constants */
|
|
4886
4912
|
let Constants = /* @__PURE__ */ function(Constants) {
|
|
4887
4913
|
/**
|
|
4888
|
-
* Key for the app's version. The placeholder `v0.8.7
|
|
4914
|
+
* Key for the app's version. The placeholder `v0.8.7` is
|
|
4889
4915
|
* swapped in by `@rollup/plugin-replace` during `npm run build:data-provider`
|
|
4890
4916
|
* using the value of the root `package.json`'s `version` field. Consumers
|
|
4891
4917
|
* always import this via the built dist bundle (see `main` field in
|
|
@@ -4893,7 +4919,7 @@ let Constants = /* @__PURE__ */ function(Constants) {
|
|
|
4893
4919
|
* substituted value. Only tests that import the TypeScript source directly
|
|
4894
4920
|
* would observe the raw placeholder.
|
|
4895
4921
|
*/
|
|
4896
|
-
Constants["VERSION"] = "v0.8.7
|
|
4922
|
+
Constants["VERSION"] = "v0.8.7";
|
|
4897
4923
|
/** Key for the Custom Config's version (librechat.yaml). */
|
|
4898
4924
|
Constants["CONFIG_VERSION"] = "1.3.13";
|
|
4899
4925
|
/** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */
|
|
@@ -5311,6 +5337,7 @@ function hasPermissions(permissions, requiredPermission) {
|
|
|
5311
5337
|
let QueryKeys = /* @__PURE__ */ function(QueryKeys) {
|
|
5312
5338
|
QueryKeys["messages"] = "messages";
|
|
5313
5339
|
QueryKeys["sharedMessages"] = "sharedMessages";
|
|
5340
|
+
QueryKeys["sharedStartupConfig"] = "sharedStartupConfig";
|
|
5314
5341
|
QueryKeys["sharedLinks"] = "sharedLinks";
|
|
5315
5342
|
QueryKeys["allConversations"] = "allConversations";
|
|
5316
5343
|
QueryKeys["archivedConversations"] = "archivedConversations";
|
|
@@ -5480,6 +5507,27 @@ const AUTH_REDIRECT_STORAGE_KEY = "librechat.auth.redirect.startedAt";
|
|
|
5480
5507
|
const AUTH_REDIRECT_DEDUPE_MS = 15e3;
|
|
5481
5508
|
const TOKEN_REFRESH_BUFFER_MS = 120 * 1e3;
|
|
5482
5509
|
const refreshToken = (retry) => _post(refreshToken$1(retry));
|
|
5510
|
+
const SHARE_PAGE_PATH_REGEX = /^\/share\/[^/]+\/?$/;
|
|
5511
|
+
const SHARED_MESSAGES_PATH_REGEX = /^\/api\/share\/[^/]+$/;
|
|
5512
|
+
const normalizePathname = (pathname) => pathname.startsWith("/") ? pathname : `/${pathname}`;
|
|
5513
|
+
const stripBasePath = (pathname) => {
|
|
5514
|
+
const normalizedPathname = normalizePathname(pathname);
|
|
5515
|
+
const baseUrl = apiBaseUrl();
|
|
5516
|
+
if (!baseUrl) return normalizedPathname;
|
|
5517
|
+
const normalizedBaseUrl = normalizePathname(baseUrl);
|
|
5518
|
+
if (normalizedPathname === normalizedBaseUrl || normalizedPathname.startsWith(`${normalizedBaseUrl}/`)) return normalizedPathname.slice(normalizedBaseUrl.length) || "/";
|
|
5519
|
+
return normalizedPathname;
|
|
5520
|
+
};
|
|
5521
|
+
const isSharePage = () => SHARE_PAGE_PATH_REGEX.test(stripBasePath(window.location.pathname));
|
|
5522
|
+
const getRequestPathname = (url) => {
|
|
5523
|
+
if (typeof url !== "string") return "";
|
|
5524
|
+
try {
|
|
5525
|
+
return new URL(url, window.location.origin).pathname;
|
|
5526
|
+
} catch {
|
|
5527
|
+
return url.split(/[?#]/)[0] ?? "";
|
|
5528
|
+
}
|
|
5529
|
+
};
|
|
5530
|
+
const isSharedMessagesRequest = (url, method) => method?.toLowerCase() === "get" && SHARED_MESSAGES_PATH_REGEX.test(stripBasePath(getRequestPathname(url)));
|
|
5483
5531
|
const dispatchTokenUpdatedEvent = (token) => {
|
|
5484
5532
|
setTokenHeader(token);
|
|
5485
5533
|
clearAuthRedirectStartedAt();
|
|
@@ -5599,8 +5647,9 @@ if (typeof window !== "undefined") {
|
|
|
5599
5647
|
if (isAuthRecoveryEndpoint(originalRequest.url) && !isRefreshRequest) return Promise.reject(error);
|
|
5600
5648
|
if (isRefreshRequest && getAuthRecoveryState().refreshPromise) return Promise.reject(error);
|
|
5601
5649
|
/** Skip refresh when the Authorization header has been cleared (e.g. during logout),
|
|
5602
|
-
* but allow shared link
|
|
5603
|
-
|
|
5650
|
+
* but allow the shared link data request to proceed so private shares can still
|
|
5651
|
+
* recover auth/redirect without unrelated share-page queries forcing login. */
|
|
5652
|
+
if (!axios.defaults.headers.common["Authorization"] && !(isSharePage() && isSharedMessagesRequest(originalRequest.url, originalRequest.method))) return Promise.reject(error);
|
|
5604
5653
|
if (isAuthRedirectInProgress()) return Promise.reject(error);
|
|
5605
5654
|
if (error.response.status === 401 && !originalRequest._retry) {
|
|
5606
5655
|
if (!(getAuthRecoveryState().refreshPromise != null)) console.warn("401 error, refreshing token");
|
|
@@ -5742,8 +5791,11 @@ var data_service_exports = /* @__PURE__ */ __exportAll({
|
|
|
5742
5791
|
getResourcePermissions: () => getResourcePermissions,
|
|
5743
5792
|
getRole: () => getRole,
|
|
5744
5793
|
getSearchEnabled: () => getSearchEnabled,
|
|
5794
|
+
getSharedFileDownload: () => getSharedFileDownload,
|
|
5795
|
+
getSharedFilePreview: () => getSharedFilePreview,
|
|
5745
5796
|
getSharedLink: () => getSharedLink,
|
|
5746
5797
|
getSharedMessages: () => getSharedMessages,
|
|
5798
|
+
getSharedStartupConfig: () => getSharedStartupConfig,
|
|
5747
5799
|
getSkill: () => getSkill,
|
|
5748
5800
|
getSkillFavorites: () => getSkillFavorites,
|
|
5749
5801
|
getSkillFileContent: () => getSkillFileContent,
|
|
@@ -5872,6 +5924,9 @@ function updateSkillStates(skillStates$1) {
|
|
|
5872
5924
|
function getSharedMessages(shareId) {
|
|
5873
5925
|
return request_default.get(shareMessages(shareId));
|
|
5874
5926
|
}
|
|
5927
|
+
function getSharedStartupConfig(shareId) {
|
|
5928
|
+
return request_default.get(sharedStartupConfig(shareId));
|
|
5929
|
+
}
|
|
5875
5930
|
const listSharedLinks = async (params) => {
|
|
5876
5931
|
const { pageSize, sortBy, sortDirection, search, cursor } = params;
|
|
5877
5932
|
return request_default.get(getSharedLinks(pageSize, sortBy, sortDirection, search, cursor));
|
|
@@ -5879,11 +5934,17 @@ const listSharedLinks = async (params) => {
|
|
|
5879
5934
|
function getSharedLink(conversationId) {
|
|
5880
5935
|
return request_default.get(getSharedLink$1(conversationId));
|
|
5881
5936
|
}
|
|
5882
|
-
function createSharedLink(conversationId, targetMessageId) {
|
|
5883
|
-
return request_default.post(createSharedLink$1(conversationId), {
|
|
5937
|
+
function createSharedLink(conversationId, targetMessageId, snapshotFiles) {
|
|
5938
|
+
return request_default.post(createSharedLink$1(conversationId), {
|
|
5939
|
+
targetMessageId,
|
|
5940
|
+
snapshotFiles
|
|
5941
|
+
});
|
|
5884
5942
|
}
|
|
5885
|
-
function updateSharedLink(shareId, targetMessageId) {
|
|
5886
|
-
return request_default.patch(updateSharedLink$1(shareId), {
|
|
5943
|
+
function updateSharedLink(shareId, targetMessageId, snapshotFiles) {
|
|
5944
|
+
return request_default.patch(updateSharedLink$1(shareId), {
|
|
5945
|
+
targetMessageId,
|
|
5946
|
+
snapshotFiles
|
|
5947
|
+
});
|
|
5887
5948
|
}
|
|
5888
5949
|
function deleteSharedLink(shareId) {
|
|
5889
5950
|
return request_default.delete(shareMessages(shareId));
|
|
@@ -6079,6 +6140,10 @@ const getFiles = () => {
|
|
|
6079
6140
|
const getFilePreview = (fileId) => {
|
|
6080
6141
|
return request_default.get(filePreview(fileId));
|
|
6081
6142
|
};
|
|
6143
|
+
/** Preview status for a snapshotted file served through a shared link. */
|
|
6144
|
+
const getSharedFilePreview = (shareId, fileId) => {
|
|
6145
|
+
return request_default.get(sharedFilePreview(shareId, fileId));
|
|
6146
|
+
};
|
|
6082
6147
|
const getAgentFiles = (agentId) => {
|
|
6083
6148
|
return request_default.get(agentFiles(agentId));
|
|
6084
6149
|
};
|
|
@@ -6222,6 +6287,13 @@ const getFileDownload = async (userId, file_id) => {
|
|
|
6222
6287
|
const getFileDownloadURL = async (userId, file_id) => {
|
|
6223
6288
|
return request_default.get(`${files()}/download-url/${userId}/${file_id}`);
|
|
6224
6289
|
};
|
|
6290
|
+
/** Blob download for a snapshotted file served through a shared link. */
|
|
6291
|
+
const getSharedFileDownload = async (shareId, file_id) => {
|
|
6292
|
+
return request_default.getResponse(sharedFileDownload(shareId, file_id), {
|
|
6293
|
+
responseType: "blob",
|
|
6294
|
+
headers: { Accept: "application/octet-stream" }
|
|
6295
|
+
});
|
|
6296
|
+
};
|
|
6225
6297
|
const getCodeOutputDownload = async (url) => {
|
|
6226
6298
|
return request_default.getResponse(url, {
|
|
6227
6299
|
responseType: "blob",
|
|
@@ -6604,6 +6676,6 @@ const getActiveJobs = () => {
|
|
|
6604
6676
|
return request_default.get(activeJobs());
|
|
6605
6677
|
};
|
|
6606
6678
|
//#endregion
|
|
6607
|
-
export { permissionEntrySchema as $,
|
|
6679
|
+
export { permissionEntrySchema as $, feedbackSchema as $a, extendedModelEndpointSchema as $i, MCP_USER_INPUT_FIELDS as $n, specsConfigSchema as $r, balanceSchema as $t, updateResourcePermissions as A, tPluginAuthConfigSchema as Aa, anthropicSettings as Ai, modularEndpoints as An, fileConfig as Ar, SKILL_SYNC_MAX_INTERVAL_MINUTES as At, MutationKeys as B, RunStatus as Ba, defaultAssistantFormValues as Bi, summarizationTriggerSchema as Bn, mbToBytes as Br, TTSProviders as Bt, resetPassword as C, tBannerSchema as Ca, ThinkingLevel as Ci, initialModelsConfig as Cn, defaultOCRMimeTypes as Cr, MAX_SUBAGENT_RUN_CONFIGS as Ct, updateFeedback as D, tExampleSchema as Da, agentsSettings as Di, messageFilterPiiSchema as Dn, endpointFileConfigSchema as Dr, RetentionMode as Dt, searchPrincipals as E, tConvoUpdateSchema as Ea, agentsSchema as Ei, memorySchema as En, documentParserMimeTypes as Er, RerankerTypes as Et, request_default as F, AnnotationTypes as Fa, compactAgentsBaseSchema as Fi, resolveEndpointType as Fn, imageMimeTypes as Fr, SearchCategories as Ft, PrincipalType as G, defaultOrderQuery as Ga, eReasoningEffortSchema as Gi, validateVisionModel as Gn, retrievalMimeTypesList as Gr, allowedAddressesSchema as Gt, AccessRoleIds as H, Tools as Ha, eAnthropicEffortSchema as Hi, transactionsSchema as Hn, mergeFileConfig as Hr, ViolationTypes as Ht, getTokenHeader as I, AssistantStreamEvents as Ia, compactAgentsSchema as Ii, skillSyncConfigSchema as In, imageTypeMapping as Ir, SearchProviders as It, accessRoleToPermBits as J, isActionTool as Ja, eReasoningSummarySchema as Ji, visionModels as Jn, textMimeTypes as Jr, assistantEndpointSchema as Jt, ResourceType as K, hostImageIdSuffix as Ka, eReasoningParameterFormatSchema as Ki, vertexAISchema as Kn, supportedMimeTypes as Kr, alternateName as Kt, setAcceptLanguageHeader as L, EToolResources as La, compactAssistantSchema as Li, skillSyncGitHubSourceSchema as Ln, inferMimeType as Lr, SettingsTabValues as Lt, updateUserKey as M, tPresetSchema as Ma, authTypeSchema as Mi, paramDefinitionSchema as Mn, fullMimeTypesList as Mr, STTProviders as Mt, updateUserPlugins as N, tQueryParamsSchema as Na, cacheSubsetProviders as Ni, providerEndpointMap as Nn, getEndpointFileConfig as Nr, SafeSearchTypes as Nt, updateMessage as O, tMessageSchema as Oa, anthropicBaseSchema as Oi, messageFilterSchema as On, excelFileTypes as Or, SKILL_SYNC_DEFAULT_DISCOVERY_DEPTH as Ot, userKeyQuery as P, tSharedLinkSchema as Pa, coerceNumber as Pi, rateLimitSchema as Pn, imageExtRegex as Pr, ScraperProviders as Pt, permBitsToAccessLevel as Q, feedbackRatingSchema as Qa, endpointSettings as Qi, MCPServersSchema as Qn, modelSpecSubagentsSchema as Qr, azureGroupSchema as Qt, setTokenHeader as R, FilePurpose as Ra, compactGoogleSchema as Ri, specialVariables as Rn, isBedrockDocumentType as Rr, SettingsViews as Rt, requestPasswordReset as S, removeNullishValues as Sa, ThinkingDisplay as Si, imageGenTools as Sn, convertStringsToRegex as Sr, MAX_SUBAGENT_GRAPH_NODES as St, revokeUserKey as T, tConversationTagSchema as Ta, agentsBaseSchema as Ti, isRemoteOidcUrlAllowed as Tn, defaultTextMimeTypes as Tr, RateLimitPrefix as Tt, PermissionBits as U, actionDelimiter as Ua, eImageDetailSchema as Ui, turnstileOptionsSchema as Un, mimeTypeAliases as Ur, VisionModes as Ut, QueryKeys as V, StepStatus as Va, documentSupportedProviders as Vi, supportsBalanceCheck as Vn, megabyte as Vr, Time as Vt, PrincipalModel as W, actionDomainSeparator as Wa, eModelEndpointSchema as Wi, turnstileSchema as Wn, retrievalMimeTypes as Wr, agentsEndpointSchema as Wt, getResourcePermissionsResponseSchema as X, FEEDBACK_REASON_KEYS as Xa, eThinkingLevelSchema as Xi, MCPOptionsSchema as Xn, REFILL_INTERVAL_UNITS as Xr, azureEndpointSchema as Xt, effectivePermissionsResponseSchema as Y, FEEDBACK_RATINGS as Ya, eThinkingDisplaySchema as Yi, webSearchSchema as Yn, videoMimeTypes as Yr, azureBaseSchema as Yt, hasPermissions as Z, FEEDBACK_TAGS as Za, eVerbositySchema as Zi, MCPServerUserInputSchema as Zn, getRefillEligibilityDate as Zr, azureGroupConfigsSchema as Zt, getResourcePermissions as _, openAIBaseSchema as _a, Providers as _i, fileStrategiesSchema as _n, bedrockDocumentExtensions as _r, ImageDetailCost as _t, data_service_exports as a, googleSettings as aa, generateDynamicSchema as ai, configSchema as an, extractEnvVariable as ao, AuthorizationTypeEnum as ar, AuthKeys as at, register as b, openRouterSchema as ba, ReasoningResponseKey as bi, getEndpointField as bn, codeInterpreterMimeTypesList as br, LocalStorageKeys as bt, getAccessRoles as c, inputTokensIncludesCache as ca, validateSettingDefinitions as ci, defaultAssistantsVersion as cn, normalizeEndpointName as co, FileSources as cr, Capabilities as ct, getAvailablePlugins as d, isDocumentSupportedProvider as da, BedrockProviders as di, defaultRetrievalModels as dn, buildLoginRedirectUrl as dr, DEFAULT_MEMORY_MAX_INPUT_TOKENS as dt, getModelKey as ea, tModelSpecSchema as ei, baseEndpointSchema as en, feedbackTagKeySchema as eo, SSEOptionsSchema as er, principalSchema as et, getConversationById as f, isImageVisionTool as fa, BedrockReasoningConfig as fi, defaultSocialLogins as fn, loginPage as fr, EImageOutputType as ft, getModels as g, isUUID as ga, MYTHOS_CLASS_FAMILIES as gi, fileStorageSchema as gn, audioMimeTypes as gr, ForkOptions as gt, getMCPServerConnectionStatus as h, isParamEndpoint as ha, ImageVisionTool as hi, fileSourceSchema as hn, applicationMimeTypes as hr, FetchTokenConfig as ht, createPreset as i, googleSchema as ia, SettingTypes as ii, cloudfrontConfigSchema as in, envVarRegex as io, AuthTypeEnum as ir, AgentCapabilities as it, updateTokenCount as j, tPluginSchema as ja, assistantSchema as ji, ocrSchema as jn, fileConfigSchema as jr, SKILL_SYNC_MIN_INTERVAL_MINUTES as jt, updateMessageContent as k, tModelSpecPresetSchema as ka, anthropicSchema as ki, modelConfigSchema as kn, excelMimeTypes as kr, SKILL_SYNC_MAX_DISCOVERY_DEPTH as kt, getAgentApiKeys as l, isAgentsEndpoint as la, AnthropicEffort as li, defaultEndpoints as ln, checkOpenAIStorage as lr, CohereConstants as lt, getEffectivePermissions as m, isOpenAILikeProvider as ma, ImageDetail as mi, excludedKeys as mn, sharedFileDownload as mr, ErrorTypes as mt, clearAllConversations as n, googleBaseSchema as na, ComponentTypes as ni, bedrockGuardrailConfigSchema as nn, getTagsForRating as no, StreamableHTTPOptionsSchema as nr, updateResourcePermissionsRequestSchema as nt, deleteAgentApiKey as o, imageDetailNumeric as oa, generateGoogleSchema as oi, contextPruningSchema as on, extractVariableName as oo, TokenExchangeMethodEnum as or, BASE_ONLY_CONFIG_SECTIONS as ot, getCustomConfigSpeech as p, isMythosClassModel as pa, EModelEndpoint as pi, endpointSchema as pn, registerPage as pr, EndpointURLs as pt, accessRoleSchema as q, hostImageNamePrefix as qa, eReasoningResponseKeySchema as qi, vertexModelConfigSchema as qn, supportsFiles as qr, anthropicEndpointSchema as qt, createAgentApiKey as r, googleGenConfigSchema as ra, OptionTypes as ri, bedrockModels as rn, toMinimalFeedback as ro, WebSocketOptionsSchema as rr, updateResourcePermissionsResponseSchema as rt, deletePreset as s, imageDetailValue as sa, generateOpenAISchema as si, defaultAgentCapabilities as sn, isSensitiveEnvVar as so, FileContext as sr, CacheKeys as st, cancelMCPOAuth as t, getSettingsKeys as ta, MAX_SUBAGENTS as ti, bedrockEndpointSchema as tn, getTagByKey as to, StdioOptionsSchema as tr, resourcePermissionsResponseSchema as tt, getAllEffectivePermissions as u, isAssistantsEndpoint as ua, AuthType as ui, defaultModels as un, apiBaseUrl as ur, Constants as ut, getSharedLink as v, openAISchema as va, ReasoningEffort as vi, getConfigDefaults as vn, bedrockDocumentFormats as vr, InfiniteCollections as vt, revokeAllUserKeys as w, tConversationSchema as wa, Verbosity as wi, interfaceSchema as wn, defaultSTTMimeTypes as wr, OCRStrategy as wt, reinitializeMCPServer as x, paramEndpoints as xa, ReasoningSummary as xi, getSchemaDefaults as xn, codeTypeMapping as xr, MAX_SUBAGENT_DEPTH as xt, getSharedMessages as y, openAISettings as ya, ReasoningParameterFormat as yi, getDefaultParamsEndpoint as yn, codeInterpreterMimeTypes as yr, KnownEndpoints as yt, DynamicQueryKeys as z, MessageContentTypes as za, defaultAgentFormValues as zi, summarizationConfigSchema as zn, isPermissiveMimeConfig as zr, SystemCategories as zt };
|
|
6608
6680
|
|
|
6609
|
-
//# sourceMappingURL=data-service-
|
|
6681
|
+
//# sourceMappingURL=data-service-BsdHkdKS.mjs.map
|