Skip to content

Commit 3260f3a

Browse files
committed
Allows Customer to register model via CLI, fixed embedding generation, addressed comments, fixed upload csv method
Signed-off-by: hmumtazz <[email protected]>
1 parent 881daeb commit 3260f3a

File tree

7 files changed

+1282
-222
lines changed

7 files changed

+1282
-222
lines changed

opensearch_py_ml/ml_commons/rag_pipeline/rag/.gitignore

Lines changed: 66 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,71 @@
22
ml_commons/rag_pipeline/data/
33
ml_commons/rag_pipeline/ingestion/
44
ml_commons/rag_pipeline/rag/config.ini
5-
# Ignore virtual environment
6-
.venv/
5+
# Compiled python modules.
6+
*.pyc
7+
__pycache__/
78

9+
# Setuptools distribution folder.
10+
dist/
811

9-
# Ignore Python cache files
10-
__pycache__/
11-
*.pyc
12+
# Build folder
13+
build/
14+
15+
# docs build folder
16+
docs/build/
17+
18+
# pytest results
19+
tests/dataframe/results/*csv
20+
result_images/
21+
22+
23+
# Python egg metadata, regenerated from source files by setuptools.
24+
/*.egg-info
25+
opensearch_py_ml.egg-info/
26+
27+
# PyCharm files
28+
.idea/
29+
30+
# vscode files
31+
.vscode/
32+
33+
# pytest files
34+
.pytest_cache/
35+
36+
# Ignore MacOSX files
37+
.DS_Store
38+
39+
# Jupyter Notebook
40+
.ipynb_checkpoints
41+
42+
# IPython
43+
profile_default/
44+
ipython_config.py
45+
46+
# pyenv
47+
.python-version
48+
49+
# Environments
50+
.env
51+
.venv
52+
.nox
53+
env/
54+
venv/
55+
ENV/
56+
env.bak/
57+
venv.bak/
58+
.mypy_cache
59+
60+
# Coverage
61+
.coverage
62+
.coverage.*
63+
*-junit.xml
64+
*-codecov.xml
65+
66+
#model file
67+
all-MiniLM-L6-v2_torchscript_sentence-transformer.zip
68+
# torch generated files
69+
tests/test_SentenceTransformerModel
70+
tests/ml_commons/test_model_files
71+
tests/ml_models/tests
72+
docs/source/examples/synthetic_queries

0 commit comments

Comments
 (0)