|
6 | 6 | <Version>0.2.0</Version>
|
7 | 7 | <Description>A comprehensive, production-ready framework for implementing Retrieval Augmented Generation (RAG) pipelines using InterSystems IRIS as the vector database backend.</Description>
|
8 | 8 | <Keywords>RAG,Vector Search,Machine Learning,AI,IRIS,Python,Embeddings</Keywords>
|
9 |
| - <License>MIT</License> |
10 |
| - <Repository>https://github.com/intersystems-community/iris-rag-templates</Repository> |
11 |
| - <Homepage>https://github.com/intersystems-community/iris-rag-templates</Homepage> |
12 |
| - <MinimumVersion>2025.1</MinimumVersion> |
13 |
| - |
14 |
| - <!-- Configuration Parameters --> |
15 |
| - <Parameter Name="PYTHON_PATH"> |
16 |
| - <Description>Path to Python executable for RAG operations</Description> |
17 |
| - <Default>python3</Default> |
18 |
| - </Parameter> |
19 |
| - <Parameter Name="INSTALL_PYTHON_PACKAGE"> |
20 |
| - <Description>Whether to install Python dependencies during setup</Description> |
21 |
| - <Default>1</Default> |
22 |
| - </Parameter> |
23 |
| - <Parameter Name="ENABLE_VECTOR_SEARCH"> |
24 |
| - <Description>Enable IRIS Vector Search capabilities</Description> |
25 |
| - <Default>1</Default> |
26 |
| - </Parameter> |
27 |
| - <Parameter Name="NAMESPACE"> |
28 |
| - <Description>Target namespace for installation</Description> |
29 |
| - <Default>USER</Default> |
30 |
| - </Parameter> |
31 |
| - |
32 |
| - <!-- Dependencies --> |
33 |
| - <Dependencies> |
34 |
| - <ModuleReference> |
35 |
| - <Name>iris-python-tools</Name> |
36 |
| - <Version>1.0.0</Version> |
37 |
| - <Optional>true</Optional> |
38 |
| - </ModuleReference> |
39 |
| - </Dependencies> |
40 |
| - |
41 |
| - <!-- Package Resources --> |
42 | 9 | <Packaging>module</Packaging>
|
43 | 10 | <SourcesRoot>objectscript</SourcesRoot>
|
44 |
| - |
45 |
| - <!-- ObjectScript Classes --> |
46 | 11 | <Resource Name="RAG.IPMInstaller.CLS"/>
|
47 | 12 | <Resource Name="RAG.VectorMigration.CLS"/>
|
48 | 13 | <Resource Name="RAG.IFindSetup.CLS"/>
|
49 |
| - <Resource Name="RAG.PythonBridge.CLS"/> |
50 | 14 | <Resource Name="RAG.SourceDocumentsWithIFind.CLS"/>
|
51 |
| - <Resource Name="RAGDemo.Invoker.CLS"/> |
52 |
| - <Resource Name="RAGDemo.KeywordFinder.CLS"/> |
53 |
| - <Resource Name="RAGDemo.KeywordProcessor.CLS"/> |
54 |
| - <Resource Name="RAGDemo.TestBed.CLS"/> |
55 |
| - |
56 |
| - <!-- Python Package Resources --> |
57 |
| - <Resource Name="iris_rag" Directory="iris_rag" Recurse="true"/> |
58 |
| - <Resource Name="rag_templates" Directory="rag_templates" Recurse="true"/> |
59 |
| - <Resource Name="common" Directory="common" Recurse="true"/> |
60 |
| - <Resource Name="requirements.txt"/> |
61 |
| - <Resource Name="pyproject.toml"/> |
62 |
| - <Resource Name="README.md"/> |
63 | 15 |
|
64 | 16 | <!-- Installation Lifecycle -->
|
65 | 17 | <Lifecycle>
|
|
0 commit comments