├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── draft-release-notes-config.yml ├── labeler.yml ├── pull_request_template.md └── workflows │ ├── add-untriaged.yml │ ├── backport.yml │ ├── build-and-test.yml │ ├── changelog_verifier.yml │ ├── delete_backport_branch.yml │ ├── draft-release-notes.yml │ ├── labeler.yml │ ├── link-check.yml │ ├── lint.yml │ └── remote-integ-tests-workflow.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .whitesource ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPER_GUIDE.md ├── LICENSE ├── MAINTAINERS.md ├── NOTICE ├── README.md ├── RELEASING.md ├── SECURITY.md ├── babel.config.js ├── codecov.yml ├── common ├── constants.ts ├── index.ts ├── interfaces.ts └── utils.ts ├── documentation ├── images │ ├── advanced-input-ingest-input-schema.png │ ├── advanced-input-ingest.png │ ├── advanced-output-ingest-output-schema.png │ ├── advanced-output-ingest.png │ ├── build-and-run-ingestion-response.png │ ├── buttons.png │ ├── edit-query-term.png │ ├── enrich-data.png │ ├── enrich-query-request.png │ ├── enrich-query-results.png │ ├── export-modal.png │ ├── expression-ingest.png │ ├── expression-modal-ingest-validated.png │ ├── expression-modal-ingest.png │ ├── form.png │ ├── import-data-populated.png │ ├── import-data.png │ ├── index-settings-updated.png │ ├── index-settings.png │ ├── input-config-ingest.png │ ├── inspector.png │ ├── ml-config-ingest.png │ ├── output-config-ingest.png │ ├── override-query-with-placeholders.png │ ├── override-query.png │ ├── presets-page.png │ ├── search-response.png │ ├── sidenav.png │ └── workspace.png └── models.md ├── eslintrc.json ├── opensearch_dashboards.json ├── package.json ├── public ├── app.tsx ├── component_types │ ├── base_component.tsx │ ├── index.ts │ ├── indices │ │ ├── base_index.ts │ │ ├── index.ts │ │ └── knn_index.ts │ ├── other │ │ ├── document.tsx │ │ ├── index.ts │ │ ├── search_request.tsx │ │ └── search_response.tsx │ └── transformer │ │ ├── base_transformer.ts │ │ ├── index.ts │ │ └── ml_transformer.ts ├── configs │ ├── base_config.ts │ ├── index.ts │ ├── ingest_processors │ │ ├── copy_ingest_processor.ts │ │ ├── index.ts │ │ ├── ml_ingest_processor.ts │ │ ├── sort_ingest_processor.ts │ │ ├── split_ingest_processor.ts │ │ ├── text_chunking_ingest_processor.ts │ │ ├── text_embedding_ingest_processor.ts │ │ └── text_image_embedding_ingest_processor.ts │ ├── ml_processor.ts │ ├── processor.ts │ ├── search_request_processors │ │ ├── index.ts │ │ └── ml_search_request_processor.ts │ ├── search_response_processors │ │ ├── collapse_processor.ts │ │ ├── index.ts │ │ ├── ml_search_response_processor.ts │ │ ├── normalization_processor.ts │ │ ├── rerank_processor.ts │ │ ├── sort_search_response_processor.ts │ │ └── split_search_response_processor.ts │ ├── sort_processor.ts │ └── split_processor.ts ├── general_components │ ├── general-component-styles.scss │ ├── index.ts │ ├── jsonpath_examples_table.tsx │ ├── multi_select_filter.tsx │ ├── processing_badge.tsx │ ├── processors_title.tsx │ ├── query_params_list.tsx │ ├── results │ │ ├── index.ts │ │ ├── ml_outputs.tsx │ │ ├── results.tsx │ │ ├── results_json.tsx │ │ └── results_table.tsx │ └── service_card │ │ ├── icon.svg │ │ ├── index.ts │ │ └── plugin_card.tsx ├── global-styles.scss ├── index.scss ├── index.ts ├── pages │ ├── index.ts │ ├── workflow_detail │ │ ├── agentic_search │ │ │ ├── agentic_search_styles.scss │ │ │ ├── agentic_search_workspace.tsx │ │ │ ├── components │ │ │ │ ├── agentic_search_info_modal.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── no_deployed_models_callout.tsx │ │ │ │ ├── no_indices_callout.tsx │ │ │ │ ├── no_search_templates_callout.tsx │ │ │ │ ├── simplified_json_field.test.tsx │ │ │ │ └── simplified_json_field.tsx │ │ │ ├── configure_flow │ │ │ │ ├── agent_advanced_settings.tsx │ │ │ │ ├── agent_configuration.tsx │ │ │ │ ├── agent_llm_fields.tsx │ │ │ │ ├── agent_mcp_servers.test.tsx │ │ │ │ ├── agent_mcp_servers.tsx │ │ │ │ ├── agent_memory.tsx │ │ │ │ ├── agent_tools.test.tsx │ │ │ │ ├── agent_tools.tsx │ │ │ │ ├── configure_flow.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── mcp_server_selector.test.tsx │ │ │ │ ├── mcp_server_selector.tsx │ │ │ │ ├── mcp_tool_filters.test.tsx │ │ │ │ ├── mcp_tool_filters.tsx │ │ │ │ └── tool_forms │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── query_planning_tool.test.tsx │ │ │ │ │ ├── query_planning_tool.tsx │ │ │ │ │ ├── utils.tsx │ │ │ │ │ └── web_search_tool.tsx │ │ │ ├── index.ts │ │ │ └── test_flow │ │ │ │ ├── agent_details_modal.tsx │ │ │ │ ├── agent_selector.test.tsx │ │ │ │ ├── agent_selector.tsx │ │ │ │ ├── agent_summary_modal.tsx │ │ │ │ ├── generated_query.test.tsx │ │ │ │ ├── generated_query.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── index_details_modal.tsx │ │ │ │ ├── index_selector.test.tsx │ │ │ │ ├── index_selector.tsx │ │ │ │ ├── query_field_selector.tsx │ │ │ │ ├── search_query.test.tsx │ │ │ │ ├── search_query.tsx │ │ │ │ ├── search_results.test.tsx │ │ │ │ ├── search_results.tsx │ │ │ │ ├── test_flow.tsx │ │ │ │ ├── visualized_hits.test.tsx │ │ │ │ └── visualized_hits.tsx │ │ ├── component_input │ │ │ ├── component_input.tsx │ │ │ ├── config_field_list.tsx │ │ │ ├── index.ts │ │ │ ├── ingest_inputs │ │ │ │ ├── advanced_settings.tsx │ │ │ │ ├── bulk_popover_content.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── ingest_data.tsx │ │ │ │ ├── source_data.tsx │ │ │ │ └── source_data_modal.tsx │ │ │ ├── input_fields │ │ │ │ ├── boolean_field.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── json_field.tsx │ │ │ │ ├── json_lines_field.tsx │ │ │ │ ├── map_array_field.tsx │ │ │ │ ├── map_field.tsx │ │ │ │ ├── model_field.tsx │ │ │ │ ├── models_info_popover.tsx │ │ │ │ ├── number_field.tsx │ │ │ │ ├── select_field.tsx │ │ │ │ ├── select_with_custom_options.tsx │ │ │ │ └── text_field.tsx │ │ │ ├── processor_inputs │ │ │ │ ├── index.ts │ │ │ │ ├── ml_processor_inputs │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── ml_processor_inputs.tsx │ │ │ │ │ ├── modals │ │ │ │ │ │ ├── configure_expression_modal.tsx │ │ │ │ │ │ ├── configure_multi_expression_modal.tsx │ │ │ │ │ │ ├── configure_template_modal.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── override_query_modal.tsx │ │ │ │ │ ├── model_inputs.tsx │ │ │ │ │ ├── model_outputs.tsx │ │ │ │ │ └── utils.ts │ │ │ │ ├── normalization_processor_inputs.tsx │ │ │ │ ├── processor_inputs.tsx │ │ │ │ └── text_chunking_processor_inputs.tsx │ │ │ └── search_inputs │ │ │ │ ├── configure_search_request.tsx │ │ │ │ ├── edit_query_modal.tsx │ │ │ │ ├── index.ts │ │ │ │ └── run_query.tsx │ │ ├── components │ │ │ ├── agentic_search_application_content.test.tsx │ │ │ ├── agentic_search_application_content.tsx │ │ │ ├── edit_workflow_metadata_modal.tsx │ │ │ ├── export_modal.test.tsx │ │ │ ├── export_modal.tsx │ │ │ ├── export_template_content.test.tsx │ │ │ ├── export_template_content.tsx │ │ │ ├── header.tsx │ │ │ ├── index.ts │ │ │ └── intro_flyout.tsx │ │ ├── index.ts │ │ ├── left_nav │ │ │ ├── index.ts │ │ │ ├── left_nav.tsx │ │ │ └── nav_content │ │ │ │ ├── down_arrow.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── ingest_content.tsx │ │ │ │ ├── nav_components │ │ │ │ ├── index.ts │ │ │ │ ├── nav_component.tsx │ │ │ │ ├── processor_list.tsx │ │ │ │ └── processors_component.tsx │ │ │ │ └── search_content.tsx │ │ ├── resizable_workspace.tsx │ │ ├── tools │ │ │ ├── errors │ │ │ │ ├── errors.tsx │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── ingest │ │ │ │ ├── index.ts │ │ │ │ └── ingest.tsx │ │ │ ├── query │ │ │ │ ├── index.ts │ │ │ │ └── query.tsx │ │ │ ├── resources │ │ │ │ ├── columns.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── resource_flyout.tsx │ │ │ │ ├── resource_flyout_content.tsx │ │ │ │ ├── resource_list_with_flyout.tsx │ │ │ │ ├── resources.tsx │ │ │ │ └── resources_flyout.tsx │ │ │ └── tools.tsx │ │ ├── workflow-detail-styles.scss │ │ ├── workflow_detail.test.tsx │ │ ├── workflow_detail.tsx │ │ └── workspace │ │ │ ├── index.ts │ │ │ ├── reactflow-styles.scss │ │ │ ├── workspace-styles.scss │ │ │ ├── workspace.tsx │ │ │ ├── workspace_components │ │ │ ├── group_component.tsx │ │ │ ├── index.ts │ │ │ ├── ingest_group_component.tsx │ │ │ ├── input_handle.tsx │ │ │ ├── output_handle.tsx │ │ │ ├── search_group_component.tsx │ │ │ ├── utils.ts │ │ │ └── workspace_component.tsx │ │ │ └── workspace_edge │ │ │ ├── deletable-edge-styles.scss │ │ │ ├── deletable_edge.tsx │ │ │ └── index.ts │ └── workflows │ │ ├── empty_list_message.tsx │ │ ├── get_started_accordion.tsx │ │ ├── import_workflow │ │ ├── import_workflow_modal.test.tsx │ │ ├── import_workflow_modal.tsx │ │ └── index.ts │ │ ├── index.ts │ │ ├── new_workflow │ │ ├── index.ts │ │ ├── new_workflow.test.tsx │ │ ├── new_workflow.tsx │ │ ├── quick_configure_modal.tsx │ │ ├── quick_configure_optional_fields.tsx │ │ ├── use_case.tsx │ │ └── utils.ts │ │ ├── workflow_list │ │ ├── columns.tsx │ │ ├── delete_workflow_modal.tsx │ │ ├── index.ts │ │ ├── resource_list.tsx │ │ ├── workflow_list.test.tsx │ │ └── workflow_list.tsx │ │ ├── workflows.test.tsx │ │ └── workflows.tsx ├── plugin.ts ├── render_app.tsx ├── route_service.ts ├── services.ts ├── store │ ├── index.ts │ ├── reducers │ │ ├── errors_reducer.ts │ │ ├── index.ts │ │ ├── ml_reducer.ts │ │ ├── opensearch_reducer.ts │ │ ├── presets_reducer.ts │ │ └── workflows_reducer.ts │ └── store.ts ├── types.ts └── utils │ ├── config_to_form_utils.ts │ ├── config_to_schema_utils.ts │ ├── config_to_template_utils.test.tsx │ ├── config_to_template_utils.ts │ ├── config_to_workspace_utils.ts │ ├── constants.ts │ ├── form_to_config_utils.ts │ ├── form_to_pipeline_utils.ts │ ├── index.ts │ └── utils.tsx ├── release-notes ├── opensearch-dashboards-flow-framework.release-notes-3.3.0.0.md ├── opensearch-dashboards-flow-framework.release-notes-3.4.0.0.md ├── opensearch-dashboards-flowFrameworkDashboards.release-notes-3.2.0.0.md ├── opensearch-flow-framework-dashboards.release-notes-2.19.0.0.md ├── opensearch-flow-framework-dashboards.release-notes-3.0.0.0-alpha1.md ├── opensearch-flow-framework-dashboards.release-notes-3.0.0.0-beta1.md ├── opensearch-flow-framework-dashboards.release-notes-3.0.0.0.md └── opensearch-flow-framework-dashboards.release-notes-3.1.0.0.md ├── server ├── cluster │ ├── core_plugin.ts │ ├── flow_framework_plugin.ts │ ├── index.ts │ └── ml_plugin.ts ├── index.ts ├── plugin.ts ├── resources │ └── templates │ │ ├── agentic_search.json │ │ ├── custom.json │ │ ├── hybrid_search.json │ │ ├── hybrid_search_with_rag.json │ │ ├── multimodal_search.json │ │ ├── semantic_search.json │ │ ├── semantic_search_using_sparse_encoders.json │ │ └── vector_search_with_rag.json ├── routes │ ├── flow_framework_routes_service.ts │ ├── helpers.ts │ ├── index.ts │ ├── ml_routes_service.ts │ └── opensearch_routes_service.ts ├── types.ts └── utils │ └── helpers.ts ├── test ├── index.ts ├── interfaces.ts ├── jest.config.js ├── mocks │ ├── empty_mock.ts │ ├── html_id_generator.ts │ ├── index.ts │ ├── mock_core_services.ts │ └── uuid_mock.ts ├── setup.ts └── utils.ts ├── tsconfig.json ├── whitesource.config └── yarn.lock /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/draft-release-notes-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/draft-release-notes-config.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/add-untriaged.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/workflows/add-untriaged.yml -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/changelog_verifier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/workflows/changelog_verifier.yml -------------------------------------------------------------------------------- /.github/workflows/delete_backport_branch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/workflows/delete_backport_branch.yml -------------------------------------------------------------------------------- /.github/workflows/draft-release-notes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/workflows/draft-release-notes.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/link-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/workflows/link-check.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/remote-integ-tests-workflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.github/workflows/remote-integ-tests-workflow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.yml 2 | release-notes/ 3 | *.config -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.prettierrc -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/.whitesource -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPER_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/DEVELOPER_GUIDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/RELEASING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/SECURITY.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/babel.config.js -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/codecov.yml -------------------------------------------------------------------------------- /common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/common/constants.ts -------------------------------------------------------------------------------- /common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/common/index.ts -------------------------------------------------------------------------------- /common/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/common/interfaces.ts -------------------------------------------------------------------------------- /common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/common/utils.ts -------------------------------------------------------------------------------- /documentation/images/advanced-input-ingest-input-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/advanced-input-ingest-input-schema.png -------------------------------------------------------------------------------- /documentation/images/advanced-input-ingest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/advanced-input-ingest.png -------------------------------------------------------------------------------- /documentation/images/advanced-output-ingest-output-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/advanced-output-ingest-output-schema.png -------------------------------------------------------------------------------- /documentation/images/advanced-output-ingest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/advanced-output-ingest.png -------------------------------------------------------------------------------- /documentation/images/build-and-run-ingestion-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/build-and-run-ingestion-response.png -------------------------------------------------------------------------------- /documentation/images/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/buttons.png -------------------------------------------------------------------------------- /documentation/images/edit-query-term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/edit-query-term.png -------------------------------------------------------------------------------- /documentation/images/enrich-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/enrich-data.png -------------------------------------------------------------------------------- /documentation/images/enrich-query-request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/enrich-query-request.png -------------------------------------------------------------------------------- /documentation/images/enrich-query-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/enrich-query-results.png -------------------------------------------------------------------------------- /documentation/images/export-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/export-modal.png -------------------------------------------------------------------------------- /documentation/images/expression-ingest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/expression-ingest.png -------------------------------------------------------------------------------- /documentation/images/expression-modal-ingest-validated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/expression-modal-ingest-validated.png -------------------------------------------------------------------------------- /documentation/images/expression-modal-ingest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/expression-modal-ingest.png -------------------------------------------------------------------------------- /documentation/images/form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/form.png -------------------------------------------------------------------------------- /documentation/images/import-data-populated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/import-data-populated.png -------------------------------------------------------------------------------- /documentation/images/import-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/import-data.png -------------------------------------------------------------------------------- /documentation/images/index-settings-updated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/index-settings-updated.png -------------------------------------------------------------------------------- /documentation/images/index-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/index-settings.png -------------------------------------------------------------------------------- /documentation/images/input-config-ingest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/input-config-ingest.png -------------------------------------------------------------------------------- /documentation/images/inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/inspector.png -------------------------------------------------------------------------------- /documentation/images/ml-config-ingest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/ml-config-ingest.png -------------------------------------------------------------------------------- /documentation/images/output-config-ingest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/output-config-ingest.png -------------------------------------------------------------------------------- /documentation/images/override-query-with-placeholders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/override-query-with-placeholders.png -------------------------------------------------------------------------------- /documentation/images/override-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/override-query.png -------------------------------------------------------------------------------- /documentation/images/presets-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/presets-page.png -------------------------------------------------------------------------------- /documentation/images/search-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/search-response.png -------------------------------------------------------------------------------- /documentation/images/sidenav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/sidenav.png -------------------------------------------------------------------------------- /documentation/images/workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/images/workspace.png -------------------------------------------------------------------------------- /documentation/models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/documentation/models.md -------------------------------------------------------------------------------- /eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/eslintrc.json -------------------------------------------------------------------------------- /opensearch_dashboards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/opensearch_dashboards.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/package.json -------------------------------------------------------------------------------- /public/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/app.tsx -------------------------------------------------------------------------------- /public/component_types/base_component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/component_types/base_component.tsx -------------------------------------------------------------------------------- /public/component_types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/component_types/index.ts -------------------------------------------------------------------------------- /public/component_types/indices/base_index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/component_types/indices/base_index.ts -------------------------------------------------------------------------------- /public/component_types/indices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/component_types/indices/index.ts -------------------------------------------------------------------------------- /public/component_types/indices/knn_index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/component_types/indices/knn_index.ts -------------------------------------------------------------------------------- /public/component_types/other/document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/component_types/other/document.tsx -------------------------------------------------------------------------------- /public/component_types/other/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/component_types/other/index.ts -------------------------------------------------------------------------------- /public/component_types/other/search_request.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/component_types/other/search_request.tsx -------------------------------------------------------------------------------- /public/component_types/other/search_response.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/component_types/other/search_response.tsx -------------------------------------------------------------------------------- /public/component_types/transformer/base_transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/component_types/transformer/base_transformer.ts -------------------------------------------------------------------------------- /public/component_types/transformer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/component_types/transformer/index.ts -------------------------------------------------------------------------------- /public/component_types/transformer/ml_transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/component_types/transformer/ml_transformer.ts -------------------------------------------------------------------------------- /public/configs/base_config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/base_config.ts -------------------------------------------------------------------------------- /public/configs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/index.ts -------------------------------------------------------------------------------- /public/configs/ingest_processors/copy_ingest_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/ingest_processors/copy_ingest_processor.ts -------------------------------------------------------------------------------- /public/configs/ingest_processors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/ingest_processors/index.ts -------------------------------------------------------------------------------- /public/configs/ingest_processors/ml_ingest_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/ingest_processors/ml_ingest_processor.ts -------------------------------------------------------------------------------- /public/configs/ingest_processors/sort_ingest_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/ingest_processors/sort_ingest_processor.ts -------------------------------------------------------------------------------- /public/configs/ingest_processors/split_ingest_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/ingest_processors/split_ingest_processor.ts -------------------------------------------------------------------------------- /public/configs/ingest_processors/text_chunking_ingest_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/ingest_processors/text_chunking_ingest_processor.ts -------------------------------------------------------------------------------- /public/configs/ingest_processors/text_embedding_ingest_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/ingest_processors/text_embedding_ingest_processor.ts -------------------------------------------------------------------------------- /public/configs/ingest_processors/text_image_embedding_ingest_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/ingest_processors/text_image_embedding_ingest_processor.ts -------------------------------------------------------------------------------- /public/configs/ml_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/ml_processor.ts -------------------------------------------------------------------------------- /public/configs/processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/processor.ts -------------------------------------------------------------------------------- /public/configs/search_request_processors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/search_request_processors/index.ts -------------------------------------------------------------------------------- /public/configs/search_request_processors/ml_search_request_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/search_request_processors/ml_search_request_processor.ts -------------------------------------------------------------------------------- /public/configs/search_response_processors/collapse_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/search_response_processors/collapse_processor.ts -------------------------------------------------------------------------------- /public/configs/search_response_processors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/search_response_processors/index.ts -------------------------------------------------------------------------------- /public/configs/search_response_processors/ml_search_response_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/search_response_processors/ml_search_response_processor.ts -------------------------------------------------------------------------------- /public/configs/search_response_processors/normalization_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/search_response_processors/normalization_processor.ts -------------------------------------------------------------------------------- /public/configs/search_response_processors/rerank_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/search_response_processors/rerank_processor.ts -------------------------------------------------------------------------------- /public/configs/search_response_processors/sort_search_response_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/search_response_processors/sort_search_response_processor.ts -------------------------------------------------------------------------------- /public/configs/search_response_processors/split_search_response_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/search_response_processors/split_search_response_processor.ts -------------------------------------------------------------------------------- /public/configs/sort_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/sort_processor.ts -------------------------------------------------------------------------------- /public/configs/split_processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/configs/split_processor.ts -------------------------------------------------------------------------------- /public/general_components/general-component-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/general-component-styles.scss -------------------------------------------------------------------------------- /public/general_components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/index.ts -------------------------------------------------------------------------------- /public/general_components/jsonpath_examples_table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/jsonpath_examples_table.tsx -------------------------------------------------------------------------------- /public/general_components/multi_select_filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/multi_select_filter.tsx -------------------------------------------------------------------------------- /public/general_components/processing_badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/processing_badge.tsx -------------------------------------------------------------------------------- /public/general_components/processors_title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/processors_title.tsx -------------------------------------------------------------------------------- /public/general_components/query_params_list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/query_params_list.tsx -------------------------------------------------------------------------------- /public/general_components/results/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/results/index.ts -------------------------------------------------------------------------------- /public/general_components/results/ml_outputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/results/ml_outputs.tsx -------------------------------------------------------------------------------- /public/general_components/results/results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/results/results.tsx -------------------------------------------------------------------------------- /public/general_components/results/results_json.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/results/results_json.tsx -------------------------------------------------------------------------------- /public/general_components/results/results_table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/results/results_table.tsx -------------------------------------------------------------------------------- /public/general_components/service_card/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/service_card/icon.svg -------------------------------------------------------------------------------- /public/general_components/service_card/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/service_card/index.ts -------------------------------------------------------------------------------- /public/general_components/service_card/plugin_card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/general_components/service_card/plugin_card.tsx -------------------------------------------------------------------------------- /public/global-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/global-styles.scss -------------------------------------------------------------------------------- /public/index.scss: -------------------------------------------------------------------------------- 1 | /* stylelint-disable no-empty-source */ 2 | -------------------------------------------------------------------------------- /public/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/index.ts -------------------------------------------------------------------------------- /public/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/agentic_search_styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/agentic_search_styles.scss -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/agentic_search_workspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/agentic_search_workspace.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/components/agentic_search_info_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/components/agentic_search_info_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/components/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/components/no_deployed_models_callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/components/no_deployed_models_callout.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/components/no_indices_callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/components/no_indices_callout.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/components/no_search_templates_callout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/components/no_search_templates_callout.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/components/simplified_json_field.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/components/simplified_json_field.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/components/simplified_json_field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/components/simplified_json_field.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/agent_advanced_settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/agent_advanced_settings.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/agent_configuration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/agent_configuration.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/agent_llm_fields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/agent_llm_fields.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/agent_mcp_servers.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/agent_mcp_servers.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/agent_mcp_servers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/agent_mcp_servers.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/agent_memory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/agent_memory.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/agent_tools.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/agent_tools.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/agent_tools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/agent_tools.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/configure_flow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/configure_flow.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/mcp_server_selector.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/mcp_server_selector.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/mcp_server_selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/mcp_server_selector.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/mcp_tool_filters.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/mcp_tool_filters.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/mcp_tool_filters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/mcp_tool_filters.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/tool_forms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/tool_forms/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/tool_forms/query_planning_tool.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/tool_forms/query_planning_tool.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/tool_forms/query_planning_tool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/tool_forms/query_planning_tool.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/tool_forms/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/tool_forms/utils.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/configure_flow/tool_forms/web_search_tool.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/configure_flow/tool_forms/web_search_tool.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/agent_details_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/agent_details_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/agent_selector.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/agent_selector.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/agent_selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/agent_selector.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/agent_summary_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/agent_summary_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/generated_query.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/generated_query.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/generated_query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/generated_query.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/index_details_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/index_details_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/index_selector.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/index_selector.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/index_selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/index_selector.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/query_field_selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/query_field_selector.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/search_query.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/search_query.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/search_query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/search_query.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/search_results.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/search_results.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/search_results.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/search_results.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/test_flow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/test_flow.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/visualized_hits.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/visualized_hits.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/agentic_search/test_flow/visualized_hits.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/agentic_search/test_flow/visualized_hits.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/component_input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/component_input.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/config_field_list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/config_field_list.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/ingest_inputs/advanced_settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/ingest_inputs/advanced_settings.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/ingest_inputs/bulk_popover_content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/ingest_inputs/bulk_popover_content.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/ingest_inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/ingest_inputs/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/ingest_inputs/ingest_data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/ingest_inputs/ingest_data.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/ingest_inputs/source_data.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/ingest_inputs/source_data.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/ingest_inputs/source_data_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/ingest_inputs/source_data_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/input_fields/boolean_field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/input_fields/boolean_field.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/input_fields/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/input_fields/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/input_fields/json_field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/input_fields/json_field.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/input_fields/json_lines_field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/input_fields/json_lines_field.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/input_fields/map_array_field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/input_fields/map_array_field.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/input_fields/map_field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/input_fields/map_field.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/input_fields/model_field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/input_fields/model_field.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/input_fields/models_info_popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/input_fields/models_info_popover.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/input_fields/number_field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/input_fields/number_field.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/input_fields/select_field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/input_fields/select_field.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/input_fields/select_with_custom_options.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/input_fields/select_with_custom_options.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/input_fields/text_field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/input_fields/text_field.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/processor_inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/processor_inputs/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/ml_processor_inputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/ml_processor_inputs.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/modals/configure_expression_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/modals/configure_expression_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/modals/configure_multi_expression_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/modals/configure_multi_expression_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/modals/configure_template_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/modals/configure_template_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/modals/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/modals/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/modals/override_query_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/modals/override_query_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/model_inputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/model_inputs.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/model_outputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/model_outputs.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/processor_inputs/ml_processor_inputs/utils.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/processor_inputs/normalization_processor_inputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/processor_inputs/normalization_processor_inputs.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/processor_inputs/processor_inputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/processor_inputs/processor_inputs.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/processor_inputs/text_chunking_processor_inputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/processor_inputs/text_chunking_processor_inputs.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/search_inputs/configure_search_request.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/search_inputs/configure_search_request.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/search_inputs/edit_query_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/search_inputs/edit_query_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/search_inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/search_inputs/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/component_input/search_inputs/run_query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/component_input/search_inputs/run_query.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/components/agentic_search_application_content.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/components/agentic_search_application_content.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/components/agentic_search_application_content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/components/agentic_search_application_content.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/components/edit_workflow_metadata_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/components/edit_workflow_metadata_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/components/export_modal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/components/export_modal.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/components/export_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/components/export_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/components/export_template_content.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/components/export_template_content.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/components/export_template_content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/components/export_template_content.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/components/header.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/components/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/components/intro_flyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/components/intro_flyout.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/left_nav/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/left_nav/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/left_nav/left_nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/left_nav/left_nav.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/left_nav/nav_content/down_arrow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/left_nav/nav_content/down_arrow.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/left_nav/nav_content/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/left_nav/nav_content/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/left_nav/nav_content/ingest_content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/left_nav/nav_content/ingest_content.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/left_nav/nav_content/nav_components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/left_nav/nav_content/nav_components/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/left_nav/nav_content/nav_components/nav_component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/left_nav/nav_content/nav_components/nav_component.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/left_nav/nav_content/nav_components/processor_list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/left_nav/nav_content/nav_components/processor_list.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/left_nav/nav_content/nav_components/processors_component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/left_nav/nav_content/nav_components/processors_component.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/left_nav/nav_content/search_content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/left_nav/nav_content/search_content.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/resizable_workspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/resizable_workspace.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/errors/errors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/errors/errors.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/errors/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/ingest/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/ingest/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/ingest/ingest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/ingest/ingest.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/query/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/query/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/query/query.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/query/query.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/resources/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/resources/columns.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/resources/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/resources/resource_flyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/resources/resource_flyout.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/resources/resource_flyout_content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/resources/resource_flyout_content.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/resources/resource_list_with_flyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/resources/resource_list_with_flyout.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/resources/resources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/resources/resources.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/resources/resources_flyout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/resources/resources_flyout.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/tools/tools.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/tools/tools.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/workflow-detail-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workflow-detail-styles.scss -------------------------------------------------------------------------------- /public/pages/workflow_detail/workflow_detail.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workflow_detail.test.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/workflow_detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workflow_detail.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/reactflow-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/reactflow-styles.scss -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/workspace-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/workspace-styles.scss -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/workspace.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/workspace.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/workspace_components/group_component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/workspace_components/group_component.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/workspace_components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/workspace_components/index.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/workspace_components/ingest_group_component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/workspace_components/ingest_group_component.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/workspace_components/input_handle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/workspace_components/input_handle.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/workspace_components/output_handle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/workspace_components/output_handle.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/workspace_components/search_group_component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/workspace_components/search_group_component.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/workspace_components/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/workspace_components/utils.ts -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/workspace_components/workspace_component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/workspace_components/workspace_component.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/workspace_edge/deletable-edge-styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/workspace_edge/deletable-edge-styles.scss -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/workspace_edge/deletable_edge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/workspace_edge/deletable_edge.tsx -------------------------------------------------------------------------------- /public/pages/workflow_detail/workspace/workspace_edge/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflow_detail/workspace/workspace_edge/index.ts -------------------------------------------------------------------------------- /public/pages/workflows/empty_list_message.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/empty_list_message.tsx -------------------------------------------------------------------------------- /public/pages/workflows/get_started_accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/get_started_accordion.tsx -------------------------------------------------------------------------------- /public/pages/workflows/import_workflow/import_workflow_modal.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/import_workflow/import_workflow_modal.test.tsx -------------------------------------------------------------------------------- /public/pages/workflows/import_workflow/import_workflow_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/import_workflow/import_workflow_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflows/import_workflow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/import_workflow/index.ts -------------------------------------------------------------------------------- /public/pages/workflows/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/index.ts -------------------------------------------------------------------------------- /public/pages/workflows/new_workflow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/new_workflow/index.ts -------------------------------------------------------------------------------- /public/pages/workflows/new_workflow/new_workflow.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/new_workflow/new_workflow.test.tsx -------------------------------------------------------------------------------- /public/pages/workflows/new_workflow/new_workflow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/new_workflow/new_workflow.tsx -------------------------------------------------------------------------------- /public/pages/workflows/new_workflow/quick_configure_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/new_workflow/quick_configure_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflows/new_workflow/quick_configure_optional_fields.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/new_workflow/quick_configure_optional_fields.tsx -------------------------------------------------------------------------------- /public/pages/workflows/new_workflow/use_case.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/new_workflow/use_case.tsx -------------------------------------------------------------------------------- /public/pages/workflows/new_workflow/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/new_workflow/utils.ts -------------------------------------------------------------------------------- /public/pages/workflows/workflow_list/columns.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/workflow_list/columns.tsx -------------------------------------------------------------------------------- /public/pages/workflows/workflow_list/delete_workflow_modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/workflow_list/delete_workflow_modal.tsx -------------------------------------------------------------------------------- /public/pages/workflows/workflow_list/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/workflow_list/index.ts -------------------------------------------------------------------------------- /public/pages/workflows/workflow_list/resource_list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/workflow_list/resource_list.tsx -------------------------------------------------------------------------------- /public/pages/workflows/workflow_list/workflow_list.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/workflow_list/workflow_list.test.tsx -------------------------------------------------------------------------------- /public/pages/workflows/workflow_list/workflow_list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/workflow_list/workflow_list.tsx -------------------------------------------------------------------------------- /public/pages/workflows/workflows.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/workflows.test.tsx -------------------------------------------------------------------------------- /public/pages/workflows/workflows.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/pages/workflows/workflows.tsx -------------------------------------------------------------------------------- /public/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/plugin.ts -------------------------------------------------------------------------------- /public/render_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/render_app.tsx -------------------------------------------------------------------------------- /public/route_service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/route_service.ts -------------------------------------------------------------------------------- /public/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/services.ts -------------------------------------------------------------------------------- /public/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/store/index.ts -------------------------------------------------------------------------------- /public/store/reducers/errors_reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/store/reducers/errors_reducer.ts -------------------------------------------------------------------------------- /public/store/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/store/reducers/index.ts -------------------------------------------------------------------------------- /public/store/reducers/ml_reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/store/reducers/ml_reducer.ts -------------------------------------------------------------------------------- /public/store/reducers/opensearch_reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/store/reducers/opensearch_reducer.ts -------------------------------------------------------------------------------- /public/store/reducers/presets_reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/store/reducers/presets_reducer.ts -------------------------------------------------------------------------------- /public/store/reducers/workflows_reducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/store/reducers/workflows_reducer.ts -------------------------------------------------------------------------------- /public/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/store/store.ts -------------------------------------------------------------------------------- /public/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/types.ts -------------------------------------------------------------------------------- /public/utils/config_to_form_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/utils/config_to_form_utils.ts -------------------------------------------------------------------------------- /public/utils/config_to_schema_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/utils/config_to_schema_utils.ts -------------------------------------------------------------------------------- /public/utils/config_to_template_utils.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/utils/config_to_template_utils.test.tsx -------------------------------------------------------------------------------- /public/utils/config_to_template_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/utils/config_to_template_utils.ts -------------------------------------------------------------------------------- /public/utils/config_to_workspace_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/utils/config_to_workspace_utils.ts -------------------------------------------------------------------------------- /public/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/utils/constants.ts -------------------------------------------------------------------------------- /public/utils/form_to_config_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/utils/form_to_config_utils.ts -------------------------------------------------------------------------------- /public/utils/form_to_pipeline_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/utils/form_to_pipeline_utils.ts -------------------------------------------------------------------------------- /public/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/utils/index.ts -------------------------------------------------------------------------------- /public/utils/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/public/utils/utils.tsx -------------------------------------------------------------------------------- /release-notes/opensearch-dashboards-flow-framework.release-notes-3.3.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/release-notes/opensearch-dashboards-flow-framework.release-notes-3.3.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-dashboards-flow-framework.release-notes-3.4.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/release-notes/opensearch-dashboards-flow-framework.release-notes-3.4.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-dashboards-flowFrameworkDashboards.release-notes-3.2.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/release-notes/opensearch-dashboards-flowFrameworkDashboards.release-notes-3.2.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-flow-framework-dashboards.release-notes-2.19.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/release-notes/opensearch-flow-framework-dashboards.release-notes-2.19.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-flow-framework-dashboards.release-notes-3.0.0.0-alpha1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/release-notes/opensearch-flow-framework-dashboards.release-notes-3.0.0.0-alpha1.md -------------------------------------------------------------------------------- /release-notes/opensearch-flow-framework-dashboards.release-notes-3.0.0.0-beta1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/release-notes/opensearch-flow-framework-dashboards.release-notes-3.0.0.0-beta1.md -------------------------------------------------------------------------------- /release-notes/opensearch-flow-framework-dashboards.release-notes-3.0.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/release-notes/opensearch-flow-framework-dashboards.release-notes-3.0.0.0.md -------------------------------------------------------------------------------- /release-notes/opensearch-flow-framework-dashboards.release-notes-3.1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/release-notes/opensearch-flow-framework-dashboards.release-notes-3.1.0.0.md -------------------------------------------------------------------------------- /server/cluster/core_plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/cluster/core_plugin.ts -------------------------------------------------------------------------------- /server/cluster/flow_framework_plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/cluster/flow_framework_plugin.ts -------------------------------------------------------------------------------- /server/cluster/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/cluster/index.ts -------------------------------------------------------------------------------- /server/cluster/ml_plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/cluster/ml_plugin.ts -------------------------------------------------------------------------------- /server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/index.ts -------------------------------------------------------------------------------- /server/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/plugin.ts -------------------------------------------------------------------------------- /server/resources/templates/agentic_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/resources/templates/agentic_search.json -------------------------------------------------------------------------------- /server/resources/templates/custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/resources/templates/custom.json -------------------------------------------------------------------------------- /server/resources/templates/hybrid_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/resources/templates/hybrid_search.json -------------------------------------------------------------------------------- /server/resources/templates/hybrid_search_with_rag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/resources/templates/hybrid_search_with_rag.json -------------------------------------------------------------------------------- /server/resources/templates/multimodal_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/resources/templates/multimodal_search.json -------------------------------------------------------------------------------- /server/resources/templates/semantic_search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/resources/templates/semantic_search.json -------------------------------------------------------------------------------- /server/resources/templates/semantic_search_using_sparse_encoders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/resources/templates/semantic_search_using_sparse_encoders.json -------------------------------------------------------------------------------- /server/resources/templates/vector_search_with_rag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/resources/templates/vector_search_with_rag.json -------------------------------------------------------------------------------- /server/routes/flow_framework_routes_service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/routes/flow_framework_routes_service.ts -------------------------------------------------------------------------------- /server/routes/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/routes/helpers.ts -------------------------------------------------------------------------------- /server/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/routes/index.ts -------------------------------------------------------------------------------- /server/routes/ml_routes_service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/routes/ml_routes_service.ts -------------------------------------------------------------------------------- /server/routes/opensearch_routes_service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/routes/opensearch_routes_service.ts -------------------------------------------------------------------------------- /server/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/types.ts -------------------------------------------------------------------------------- /server/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/server/utils/helpers.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/test/index.ts -------------------------------------------------------------------------------- /test/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/test/interfaces.ts -------------------------------------------------------------------------------- /test/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/test/jest.config.js -------------------------------------------------------------------------------- /test/mocks/empty_mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/test/mocks/empty_mock.ts -------------------------------------------------------------------------------- /test/mocks/html_id_generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/test/mocks/html_id_generator.ts -------------------------------------------------------------------------------- /test/mocks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/test/mocks/index.ts -------------------------------------------------------------------------------- /test/mocks/mock_core_services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/test/mocks/mock_core_services.ts -------------------------------------------------------------------------------- /test/mocks/uuid_mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/test/mocks/uuid_mock.ts -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/test/setup.ts -------------------------------------------------------------------------------- /test/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/test/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/tsconfig.json -------------------------------------------------------------------------------- /whitesource.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/whitesource.config -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensearch-project/dashboards-flow-framework/HEAD/yarn.lock --------------------------------------------------------------------------------