Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumped minimum compatibility to 2.18.0 #413

Merged
merged 2 commits into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions opensearch_dashboards.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,12 @@
"server": true,
"ui": true,
"requiredBundles": [],
"requiredPlugins": [
"navigation",
"opensearchDashboardsUtils"
],
"requiredPlugins": ["navigation", "opensearchDashboardsUtils"],
"optionalPlugins": [
"dataSource",
"dataSourceManagement",
"contentManagement"
],
"supportedOSDataSourceVersions": ">=2.17.0 <4.0.0",
"requiredOSDataSourcePlugins": [
"opensearch-ml",
"opensearch-flow-framework"
]
}
"supportedOSDataSourceVersions": ">=2.18.0 <4.0.0",
"requiredOSDataSourcePlugins": ["opensearch-ml", "opensearch-flow-framework"]
}
19 changes: 8 additions & 11 deletions server/resources/templates/custom.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
{
"name": "Custom",
"description": "A blank workflow with no preset configurations",
"use_case": "CUSTOM",
"version": {
"template": "1.0.0",
"compatibility": [
"2.17.0",
"3.0.0"
]
}
}
"name": "Custom",
"description": "A blank workflow with no preset configurations",
"use_case": "CUSTOM",
"version": {
"template": "1.0.0",
"compatibility": ["2.18.0", "3.0.0"]
}
}
23 changes: 10 additions & 13 deletions server/resources/templates/hybrid_search.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
{
"name": "Hybrid Search",
"description": "A basic workflow containing the ingest pipeline, search pipeline, and index configurations for performing hybrid search",
"version": {
"template": "1.0.0",
"compatibility": [
"2.17.0",
"3.0.0"
]
},
"ui_metadata": {
"type": "Hybrid search"
}
}
"name": "Hybrid Search",
"description": "A basic workflow containing the ingest pipeline, search pipeline, and index configurations for performing hybrid search",
"version": {
"template": "1.0.0",
"compatibility": ["2.18.0", "3.0.0"]
},
"ui_metadata": {
"type": "Hybrid search"
}
}
23 changes: 10 additions & 13 deletions server/resources/templates/multimodal_search.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
{
"name": "Multimodal Search",
"description": "A basic workflow containing the ingest pipeline, search pipeline, and index configurations for performing multimodal search",
"version": {
"template": "1.0.0",
"compatibility": [
"2.17.0",
"3.0.0"
]
},
"ui_metadata": {
"type": "Multimodal search"
}
}
"name": "Multimodal Search",
"description": "A basic workflow containing the ingest pipeline, search pipeline, and index configurations for performing multimodal search",
"version": {
"template": "1.0.0",
"compatibility": ["2.18.0", "3.0.0"]
},
"ui_metadata": {
"type": "Multimodal search"
}
}
23 changes: 10 additions & 13 deletions server/resources/templates/rag.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
{
"name": "Retrieval-Augmented Generation (RAG)",
"description": "A basic workflow containing the index and search pipeline configurations for performing basic retrieval-augmented generation (RAG)",
"version": {
"template": "1.0.0",
"compatibility": [
"2.17.0",
"3.0.0"
]
},
"ui_metadata": {
"type": "Retrieval-augmented generation"
}
}
"name": "Retrieval-Augmented Generation (RAG)",
"description": "A basic workflow containing the index and search pipeline configurations for performing basic retrieval-augmented generation (RAG)",
"version": {
"template": "1.0.0",
"compatibility": ["2.18.0", "3.0.0"]
},
"ui_metadata": {
"type": "Retrieval-augmented generation"
}
}
23 changes: 10 additions & 13 deletions server/resources/templates/semantic_search.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
{
"name": "Semantic Search",
"description": "A basic workflow containing the ingest pipeline, search pipeline, and index configurations for performing semantic search",
"version": {
"template": "1.0.0",
"compatibility": [
"2.17.0",
"3.0.0"
]
},
"ui_metadata": {
"type": "Semantic search"
}
}
"name": "Semantic Search",
"description": "A basic workflow containing the ingest pipeline, search pipeline, and index configurations for performing semantic search",
"version": {
"template": "1.0.0",
"compatibility": ["2.18.0", "3.0.0"]
},
"ui_metadata": {
"type": "Semantic search"
}
}
23 changes: 10 additions & 13 deletions server/resources/templates/sentiment_analysis.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
{
"name": "Sentiment Analysis",
"description": "A basic workflow containing the ingest pipeline, search pipeline, and index configurations for performing sentiment analysis",
"version": {
"template": "1.0.0",
"compatibility": [
"2.17.0",
"3.0.0"
]
},
"ui_metadata": {
"type": "Sentiment analysis"
}
}
"name": "Sentiment Analysis",
"description": "A basic workflow containing the ingest pipeline, search pipeline, and index configurations for performing sentiment analysis",
"version": {
"template": "1.0.0",
"compatibility": ["2.18.0", "3.0.0"]
},
"ui_metadata": {
"type": "Sentiment analysis"
}
}
2 changes: 1 addition & 1 deletion test/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ function generateWorkflow({ id, name, type }: WorkflowInput): Workflow {
return {
id,
name,
version: { template: '1.0.0', compatibility: ['2.17.0', '3.0.0'] },
version: { template: '1.0.0', compatibility: ['2.18.0', '3.0.0'] },
ui_metadata: getConfig(type),
};
}
Expand Down
Loading