Skip to content

Commit

Permalink
more updates
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Ohlsen <[email protected]>
  • Loading branch information
ohltyler committed Jan 28, 2025
1 parent 7102cbf commit 9c70de2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions common/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ export enum WORKFLOW_TYPE {
SEMANTIC_SEARCH = 'Semantic Search',
MULTIMODAL_SEARCH = 'Multimodal Search',
HYBRID_SEARCH = 'Hybrid Search',
RAG = 'Lexical Search with RAG',
VECTOR_SEARCH_WITH_RAG = 'Vector Search with RAG',
RAG = 'RAG with Lexical Retrieval',
VECTOR_SEARCH_WITH_RAG = 'RAG with Vector Retrieval',
CUSTOM = 'Custom Search',
UNKNOWN = 'Unknown',
}
Expand Down
10 changes: 5 additions & 5 deletions public/pages/workflow_detail/components/intro_flyout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export function IntroFlyout(props: IntroFlyoutProps) {
</EuiFlexItem>
<EuiFlexItem grow={false}>
<EuiTitle size="s">
<h4>2. Build ingest flow</h4>
<h4>2. Build an ingest flow</h4>
</EuiTitle>
</EuiFlexItem>
<EuiFlexItem grow={false}>
Expand All @@ -128,8 +128,8 @@ export function IntroFlyout(props: IntroFlyoutProps) {
then add processors to enrich your data.
</p>
<p style={{ marginTop: '-16px' }}>
If you are using an existing index with data, you can
skip this step.
If you are using an existing index containing data,
you can skip this step.
</p>
</EuiText>
</EuiFlexItem>
Expand Down Expand Up @@ -183,8 +183,8 @@ export function IntroFlyout(props: IntroFlyoutProps) {
add processors to enrich your data.
</p>
<p style={{ marginTop: '-16px' }}>
If you are using an existing index with data, you can
skip this step.
If you are using an existing index containing data,
you can skip this step.
</p>
</EuiText>
</EuiFlexItem>
Expand Down
6 changes: 3 additions & 3 deletions server/resources/templates/lexical_search_with_rag.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Lexical Search with RAG",
"description": "Build a search application that uses RAG to retrieve keyword-matched documents using lexical search, pass them to large language models, and synthesize answers.",
"name": "RAG with Lexical Retrieval",
"description": "Build a search application that uses retrieval-augmented generation (RAG) to retrieve keyword-matched documents using lexical search, pass them to large language models, and synthesize answers.",
"version": {
"template": "1.0.0",
"compatibility": [
Expand All @@ -9,6 +9,6 @@
]
},
"ui_metadata": {
"type": "Lexical Search with RAG"
"type": "RAG with Lexical Retrieval"
}
}
6 changes: 3 additions & 3 deletions server/resources/templates/vector_search_with_rag.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Vector Search with RAG",
"description": "Build a search application that uses RAG to retrieve semantically similar documents using vector search, pass them to large language models, and synthesize answers.",
"name": "RAG with Vector Retrieval",
"description": "Build a search application that uses retrieval-augmented generation (RAG) to retrieve semantically similar documents using vector search, pass them to large language models, and synthesize answers.",
"version": {
"template": "1.0.0",
"compatibility": [
Expand All @@ -9,6 +9,6 @@
]
},
"ui_metadata": {
"type": "Vector Search with RAG"
"type": "RAG with Vector Retrieval"
}
}

0 comments on commit 9c70de2

Please sign in to comment.