* Add new documentation files and update package dependencies * Refactor tweak application logic in process_tweaks function * Add dynamic function creation and execution helpers * Refactor build method to be asynchronous * Add FlowToolComponent to handle flows as tools * Update RunFlowComponent to include a method for updating build config * Fix duplicated first layer results * Refactor vertex building and streaming endpoints * Add base_name attribute to Vertex class * Refactor flow.py to generate dynamic flow functions and build schemas * Refactor FlowToolComponent in FlowTool.py * Add JSONInputComponent to load JSON object as input * Update render_tool_description method in XMLAgent.py * Refactor XMLAgentComponent.render_tool_description() method * Refactor SearchApi.py to include typing and handle empty records * Refactor SearchApi class to simplify code * Add SearchApi and SearchApiTool components * Refactor ServiceFactory and Dependencies (#1560) * Update dependencies for OpenTelemetry * Update service dependency logic and add first version of telemetry service * Remove telemetry service and related code * Update cache service references * Refactor imports in env.py * Refactor code for initializing services and socketio server * Refactor parameterComponent to use inline button_text * Refactor build_vertex method and add RunnableVerticesManager class * Add import statement and update build_vertex function * Add import statement for SettingsService in MonitorServiceFactory.create() method * Refactor build_schema_from_inputs to use display_name and description for field names and descriptions respectively * Refactor graph building and running logic * Update input type mappings and function arguments * Update default values for input types in flow.py * Remove console.log statement in flowStore.ts * Add vertices_to_run field to VerticesOrderResponse * Add input_value parameter to chain components * Refactor CSVAgent build method to include handle_parse_errors parameter * Add agent_type parameter to CSVAgent build method * Update model imports in component files * Add LCAgentComponent and XMLAgentComponent * Add "agents" category to NATIVE_CATEGORIES * Refactor model.py to support chat models * Add system_message parameter to model components * Update CSVAgent.py: handle_parsing_errors and agent_type options * Add ping animation to update button * Fix encryption and decryption of API keys * Update CSVAgentComponent constructor * Refactor inputs parameter to inputs_dict in build_vertex function * Removes "component" table and drops "flowstyle" table * Delete component model and init files * Removes "flowstyle" table and drops "user" table index * Add typing import to CohereModel.py * Fix ShareModal rendering issue * Update models docs * Changed vector-stores docs * Update component documentation * Add AstraDB and AstraDBSearch components for AstraDB Vector Store docs * Rename GetNotified to Listen * Update GetNotifiedComponent import * Remove unused imports in flow-runner.mdx and features.mdx * Add new documentation files and update existing files * Update package versions in package-lock.json * Remove unused files * Delete run-flow.mdx file * Update topics * Add new file run-flow.mdx --------- Co-authored-by: Gabriel Luiz Freitas Almeida <gabriel@logspace.ai> Co-authored-by: anovazzi1 <otavio2204@gmail.com>
72 lines
2 KiB
JSON
72 lines
2 KiB
JSON
{
|
|
"name": "langflow-docs",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"docusaurus": "docusaurus",
|
|
"start": "docusaurus start",
|
|
"build": "docusaurus build",
|
|
"swizzle": "docusaurus swizzle",
|
|
"deploy": "docusaurus deploy",
|
|
"clear": "docusaurus clear",
|
|
"serve": "docusaurus serve",
|
|
"write-translations": "docusaurus write-translations",
|
|
"write-heading-ids": "docusaurus write-heading-ids"
|
|
},
|
|
"dependencies": {
|
|
"@babel/preset-react": "^7.22.3",
|
|
"@code-hike/mdx": "^0.9.0",
|
|
"@docusaurus/core": "^3.1.1",
|
|
"@docusaurus/plugin-ideal-image": "^3.1.1",
|
|
"@docusaurus/preset-classic": "^3.1.1",
|
|
"@docusaurus/theme-classic": "^3.1.1",
|
|
"@docusaurus/theme-search-algolia": "^3.0.1",
|
|
"@mdx-js/react": "^2.3.0",
|
|
"@mendable/search": "^0.0.154",
|
|
"@pbe/react-yandex-maps": "^1.2.4",
|
|
"@prismicio/client": "^7.0.1",
|
|
"@uiball/loaders": "^1.2.6",
|
|
"autoprefixer": "^10.4.14",
|
|
"clsx": "^1.2.1",
|
|
"docusaurus-plugin-image-zoom": "^0.1.4",
|
|
"docusaurus-theme-mdx-v2": "^0.1.2",
|
|
"jquery": "^3.7.0",
|
|
"medium-zoom": "^1.0.8",
|
|
"node-fetch": "^3.3.1",
|
|
"path-browserify": "^1.0.1",
|
|
"postcss": "^8.4.31",
|
|
"prism-react-renderer": "^1.3.5",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-images": "^0.6.7",
|
|
"react-medium-image-zoom": "^5.1.6",
|
|
"react-player": "^2.12.0",
|
|
"react-transition-group": "^4.4.5",
|
|
"remark-parse": "^10.0.2",
|
|
"swizzle": "^1.1.0",
|
|
"tailwindcss": "^3.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@docusaurus/module-type-aliases": "2.4.1",
|
|
"css-loader": "^6.8.1",
|
|
"docusaurus-node-polyfills": "^1.0.0",
|
|
"node-sass": "^9.0.0",
|
|
"sass": "^1.62.1",
|
|
"ts-loader": "^9.4.3"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.5%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">=16.14"
|
|
}
|
|
}
|