mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-28 22:28:51 +01:00
- Added firecrawlOptions configuration field to librechat.yaml - Refactored web.ts to live in packages/api rather than data-provider - Updated imports from web.ts to reflect new location - Added firecrawlOptions to FirecrawlConfig interface - Added firecrawlOptions to authResult of loadWebSearchAuth so it gets properly passed to agents to be built into firecrawl payload - Added tests for firecrawlOptions to web.spec.ts
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
/* config */
|
|
export * from './azure';
|
|
export * from './bedrock';
|
|
export * from './config';
|
|
export * from './file-config';
|
|
/* artifacts */
|
|
export * from './artifacts';
|
|
/* schema helpers */
|
|
export * from './parsers';
|
|
export * from './ocr';
|
|
/* custom/dynamic configurations */
|
|
export * from './generate';
|
|
export * from './models';
|
|
/* mcp */
|
|
export * from './mcp';
|
|
/* memory */
|
|
export * from './memory';
|
|
/* RBAC */
|
|
export * from './permissions';
|
|
export * from './roles';
|
|
/* types (exports schemas from `./types` as they contain needed in other defs) */
|
|
export * from './types';
|
|
export * from './types/agents';
|
|
export * from './types/assistants';
|
|
export * from './types/files';
|
|
export * from './types/mutations';
|
|
export * from './types/queries';
|
|
export * from './types/runs';
|
|
export * from './types/web';
|
|
/* query/mutation keys */
|
|
export * from './keys';
|
|
/* api call helpers */
|
|
export * from './headers-helpers';
|
|
export { default as request } from './request';
|
|
export { dataService };
|
|
import * as dataService from './data-service';
|
|
/* general helpers */
|
|
export * from './utils';
|
|
export * from './actions';
|
|
export { default as createPayload } from './createPayload';
|
|
/* feedback */
|
|
export * from './feedback';
|
|
export * from './parameterSettings';
|