Skip to content

Commit 6abaeb9

Browse files
pavanjavapavanmantha
andauthored
Tool improvements (#80)
* -added api and docker capability of semantic cache and semantic router * -enhanced cli options and -incremented setup --------- Co-authored-by: pavanmantha <pavan.mantha@thevaslabs.io>
1 parent 40c1da3 commit 6abaeb9

2 files changed

Lines changed: 16 additions & 4 deletions

File tree

bootstraprag/cli.py

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,23 @@ def create(project_name, framework, template, observability):
5050
]
5151
elif framework == 'standalone-qdrant':
5252
framework = 'qdrant'
53-
template_choices = ['simple-search', 'multimodal-search', 'hybrid-search', 'hybrid-search-advanced',
54-
'retrieval-quality', 'semantic-cache']
53+
template_choices = [
54+
'simple-search',
55+
'multimodal-search',
56+
'hybrid-search',
57+
'hybrid-search-advanced',
58+
'retrieval-quality',
59+
'semantic-cache',
60+
'semantic-routing'
61+
]
5562
elif framework == 'standalone-evaluations':
5663
framework = 'evaluations'
57-
template_choices = ['deep-evals', 'mlflow-evals', 'phoenix-evals', 'ragas-evals']
64+
template_choices = [
65+
'deep-evals',
66+
'mlflow-evals',
67+
'phoenix-evals',
68+
'ragas-evals'
69+
]
5870
# Use InquirerPy to select template with arrow keys
5971
template = inquirer.select(
6072
message="Which template would you like to use?",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='bootstrap-rag',
9-
version='0.0.13',
9+
version='0.0.14',
1010
long_description=long_description,
1111
long_description_content_type="text/markdown",
1212
packages=find_packages(),

0 commit comments

Comments
 (0)