databao-context-engine 0.1.1__py3-none-any.whl → 0.1.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (118) hide show
  1. databao_context_engine/__init__.py +32 -7
  2. databao_context_engine/build_sources/__init__.py +4 -0
  3. databao_context_engine/build_sources/{internal/build_runner.py → build_runner.py} +31 -27
  4. databao_context_engine/build_sources/build_service.py +53 -0
  5. databao_context_engine/build_sources/build_wiring.py +82 -0
  6. databao_context_engine/build_sources/export_results.py +41 -0
  7. databao_context_engine/build_sources/{internal/plugin_execution.py → plugin_execution.py} +11 -18
  8. databao_context_engine/cli/add_datasource_config.py +49 -44
  9. databao_context_engine/cli/commands.py +40 -55
  10. databao_context_engine/cli/info.py +3 -2
  11. databao_context_engine/databao_context_engine.py +127 -0
  12. databao_context_engine/databao_context_project_manager.py +147 -30
  13. databao_context_engine/{datasource_config → datasources}/check_config.py +31 -23
  14. databao_context_engine/datasources/datasource_context.py +90 -0
  15. databao_context_engine/datasources/datasource_discovery.py +143 -0
  16. databao_context_engine/datasources/types.py +194 -0
  17. databao_context_engine/generate_configs_schemas.py +4 -5
  18. databao_context_engine/init_project.py +25 -3
  19. databao_context_engine/introspection/property_extract.py +76 -57
  20. databao_context_engine/llm/__init__.py +10 -0
  21. databao_context_engine/llm/api.py +57 -0
  22. databao_context_engine/llm/descriptions/ollama.py +1 -3
  23. databao_context_engine/llm/errors.py +2 -8
  24. databao_context_engine/llm/factory.py +5 -2
  25. databao_context_engine/llm/install.py +26 -30
  26. databao_context_engine/llm/runtime.py +3 -5
  27. databao_context_engine/llm/service.py +1 -3
  28. databao_context_engine/mcp/mcp_runner.py +4 -2
  29. databao_context_engine/mcp/mcp_server.py +9 -11
  30. databao_context_engine/plugin_loader.py +110 -0
  31. databao_context_engine/pluginlib/build_plugin.py +12 -29
  32. databao_context_engine/pluginlib/config.py +16 -2
  33. databao_context_engine/plugins/{athena_db_plugin.py → databases/athena/athena_db_plugin.py} +3 -3
  34. databao_context_engine/plugins/databases/athena/athena_introspector.py +161 -0
  35. databao_context_engine/plugins/{base_db_plugin.py → databases/base_db_plugin.py} +6 -5
  36. databao_context_engine/plugins/databases/base_introspector.py +11 -12
  37. databao_context_engine/plugins/{clickhouse_db_plugin.py → databases/clickhouse/clickhouse_db_plugin.py} +3 -3
  38. databao_context_engine/plugins/databases/{clickhouse_introspector.py → clickhouse/clickhouse_introspector.py} +24 -16
  39. databao_context_engine/plugins/databases/duckdb/duckdb_db_plugin.py +12 -0
  40. databao_context_engine/plugins/databases/{duckdb_introspector.py → duckdb/duckdb_introspector.py} +7 -12
  41. databao_context_engine/plugins/databases/introspection_model_builder.py +1 -1
  42. databao_context_engine/plugins/databases/introspection_scope.py +11 -9
  43. databao_context_engine/plugins/databases/introspection_scope_matcher.py +2 -5
  44. databao_context_engine/plugins/{mssql_db_plugin.py → databases/mssql/mssql_db_plugin.py} +3 -3
  45. databao_context_engine/plugins/databases/{mssql_introspector.py → mssql/mssql_introspector.py} +29 -21
  46. databao_context_engine/plugins/{mysql_db_plugin.py → databases/mysql/mysql_db_plugin.py} +3 -3
  47. databao_context_engine/plugins/databases/{mysql_introspector.py → mysql/mysql_introspector.py} +26 -15
  48. databao_context_engine/plugins/databases/postgresql/__init__.py +0 -0
  49. databao_context_engine/plugins/databases/postgresql/postgresql_db_plugin.py +15 -0
  50. databao_context_engine/plugins/databases/{postgresql_introspector.py → postgresql/postgresql_introspector.py} +11 -18
  51. databao_context_engine/plugins/databases/snowflake/__init__.py +0 -0
  52. databao_context_engine/plugins/databases/snowflake/snowflake_db_plugin.py +15 -0
  53. databao_context_engine/plugins/databases/{snowflake_introspector.py → snowflake/snowflake_introspector.py} +49 -17
  54. databao_context_engine/plugins/databases/sqlite/__init__.py +0 -0
  55. databao_context_engine/plugins/databases/sqlite/sqlite_db_plugin.py +12 -0
  56. databao_context_engine/plugins/databases/sqlite/sqlite_introspector.py +241 -0
  57. databao_context_engine/plugins/duckdb_tools.py +18 -0
  58. databao_context_engine/plugins/files/__init__.py +0 -0
  59. databao_context_engine/plugins/{unstructured_files_plugin.py → files/unstructured_files_plugin.py} +1 -1
  60. databao_context_engine/plugins/plugin_loader.py +58 -52
  61. databao_context_engine/plugins/resources/parquet_introspector.py +8 -20
  62. databao_context_engine/plugins/{parquet_plugin.py → resources/parquet_plugin.py} +1 -3
  63. databao_context_engine/project/info.py +34 -2
  64. databao_context_engine/project/init_project.py +16 -7
  65. databao_context_engine/project/layout.py +14 -15
  66. databao_context_engine/retrieve_embeddings/__init__.py +3 -0
  67. databao_context_engine/retrieve_embeddings/retrieve_runner.py +17 -0
  68. databao_context_engine/retrieve_embeddings/{internal/retrieve_service.py → retrieve_service.py} +12 -19
  69. databao_context_engine/retrieve_embeddings/retrieve_wiring.py +46 -0
  70. databao_context_engine/serialization/__init__.py +0 -0
  71. databao_context_engine/{serialisation → serialization}/yaml.py +6 -6
  72. databao_context_engine/services/chunk_embedding_service.py +23 -11
  73. databao_context_engine/services/factories.py +1 -46
  74. databao_context_engine/services/persistence_service.py +11 -11
  75. databao_context_engine/storage/connection.py +11 -7
  76. databao_context_engine/storage/exceptions/exceptions.py +2 -2
  77. databao_context_engine/storage/migrate.py +3 -5
  78. databao_context_engine/storage/migrations/V01__init.sql +6 -31
  79. databao_context_engine/storage/models.py +2 -23
  80. databao_context_engine/storage/repositories/chunk_repository.py +16 -12
  81. databao_context_engine/storage/repositories/factories.py +1 -12
  82. databao_context_engine/storage/repositories/vector_search_repository.py +23 -16
  83. databao_context_engine/system/properties.py +4 -2
  84. databao_context_engine-0.1.5.dist-info/METADATA +228 -0
  85. databao_context_engine-0.1.5.dist-info/RECORD +135 -0
  86. {databao_context_engine-0.1.1.dist-info → databao_context_engine-0.1.5.dist-info}/WHEEL +1 -1
  87. databao_context_engine/build_sources/internal/build_service.py +0 -77
  88. databao_context_engine/build_sources/internal/build_wiring.py +0 -52
  89. databao_context_engine/build_sources/internal/export_results.py +0 -43
  90. databao_context_engine/build_sources/public/api.py +0 -4
  91. databao_context_engine/databao_engine.py +0 -85
  92. databao_context_engine/datasource_config/add_config.py +0 -50
  93. databao_context_engine/datasource_config/datasource_context.py +0 -60
  94. databao_context_engine/mcp/all_results_tool.py +0 -5
  95. databao_context_engine/mcp/retrieve_tool.py +0 -22
  96. databao_context_engine/plugins/databases/athena_introspector.py +0 -101
  97. databao_context_engine/plugins/duckdb_db_plugin.py +0 -12
  98. databao_context_engine/plugins/postgresql_db_plugin.py +0 -12
  99. databao_context_engine/plugins/snowflake_db_plugin.py +0 -12
  100. databao_context_engine/project/datasource_discovery.py +0 -141
  101. databao_context_engine/project/runs.py +0 -39
  102. databao_context_engine/project/types.py +0 -134
  103. databao_context_engine/retrieve_embeddings/internal/export_results.py +0 -12
  104. databao_context_engine/retrieve_embeddings/internal/retrieve_runner.py +0 -34
  105. databao_context_engine/retrieve_embeddings/internal/retrieve_wiring.py +0 -29
  106. databao_context_engine/retrieve_embeddings/public/api.py +0 -3
  107. databao_context_engine/services/run_name_policy.py +0 -8
  108. databao_context_engine/storage/repositories/datasource_run_repository.py +0 -136
  109. databao_context_engine/storage/repositories/run_repository.py +0 -157
  110. databao_context_engine-0.1.1.dist-info/METADATA +0 -186
  111. databao_context_engine-0.1.1.dist-info/RECORD +0 -135
  112. /databao_context_engine/{build_sources/internal → datasources}/__init__.py +0 -0
  113. /databao_context_engine/{build_sources/public → plugins/databases/athena}/__init__.py +0 -0
  114. /databao_context_engine/{datasource_config → plugins/databases/clickhouse}/__init__.py +0 -0
  115. /databao_context_engine/{retrieve_embeddings/internal → plugins/databases/duckdb}/__init__.py +0 -0
  116. /databao_context_engine/{retrieve_embeddings/public → plugins/databases/mssql}/__init__.py +0 -0
  117. /databao_context_engine/{serialisation → plugins/databases/mysql}/__init__.py +0 -0
  118. {databao_context_engine-0.1.1.dist-info → databao_context_engine-0.1.5.dist-info}/entry_points.txt +0 -0
@@ -1,186 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: databao-context-engine
3
- Version: 0.1.1
4
- Summary: Add your description here
5
- Requires-Dist: click>=8.3.0
6
- Requires-Dist: duckdb>=1.4.3
7
- Requires-Dist: pyyaml>=6.0.3
8
- Requires-Dist: requests>=2.32.5
9
- Requires-Dist: pymysql>=1.1.2
10
- Requires-Dist: clickhouse-connect>=0.10.0
11
- Requires-Dist: mcp>=1.23.3
12
- Requires-Dist: pyathena>=3.22.0
13
- Requires-Dist: snowflake-connector-python>=4.1.0
14
- Requires-Dist: mssql-python>=1.0.0
15
- Requires-Dist: pydantic>=2.12.4
16
- Requires-Dist: jinja2>=3.1.6
17
- Requires-Dist: asyncpg>=0.31.0
18
- Requires-Dist: asyncio>=4.0.0
19
- Requires-Dist: asyncpg-stubs>=0.31.1
20
- Requires-Python: >=3.12
21
- Description-Content-Type: text/markdown
22
-
23
- [![official project](https://jb.gg/badges/official.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
24
- [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/JetBrains/databao-context-engine/blob/main/LICENSE)
25
-
26
- [//]: # ([![PyPI version](https://img.shields.io/pypi/v/databao-context-engine.svg)](https://pypi.org/project/databao-context-engine))
27
-
28
- [//]: # ([![Python versions](https://img.shields.io/pypi/pyversions/databao-context-engine.svg)](https://pypi.org/project/databao-context-engine/))
29
-
30
-
31
- <h1 align="center">Databao Context Engine</h1>
32
- <p align="center">
33
- <b>Semantic context for your LLMs — generated automatically.</b><br/>
34
- No more copying schemas. No manual documentation. Just accurate answers.
35
- </p>
36
- <p align="center">
37
- <a href="https://databao.app">Website</a>
38
-
39
- [//]: # (•)
40
-
41
- [//]: # ( <a href="#quickstart">Quickstart</a> •)
42
-
43
- [//]: # ( <a href="#supported-data-sources">Data Sources</a> •)
44
-
45
- [//]: # ( <a href="#contributing">Contributing</a>)
46
- </p>
47
-
48
- ---
49
-
50
- ## What is Databao Context Engine?
51
-
52
- Databao Context Engine **automatically generates governed semantic context** from your databases, BI tools, documents, and spreadsheets.
53
-
54
- Integrate it with any LLM to deliver **accurate, context-aware answers** — without copying schemas or writing documentation by hand.
55
-
56
- ```
57
- Your data sources → Context Engine → Unified semantic graph → Any LLM
58
- ```
59
-
60
- ## Why choose Databao Context Engine?
61
-
62
- | Feature | What it means for you |
63
- |----------------------------|----------------------------------------------------------------|
64
- | **Auto-generated context** | Extracts schemas, relationships, and semantics automatically |
65
- | **Runs locally** | Your data never leaves your environment |
66
- | **MCP integration** | Works with Claude Desktop, Cursor, and any MCP-compatible tool |
67
- | **Multiple sources** | Databases, dbt projects, spreadsheets, documents |
68
- | **Built-in benchmarks** | Measure and improve context quality over time |
69
- | **LLM agnostic** | OpenAI, Anthropic, Ollama, Gemini — use any model |
70
- | **Governed & versioned** | Track, version, and share context across your team |
71
- | **Dynamic or static** | Serve context via MCP server or export as artifact |
72
-
73
- # Prerequisites
74
-
75
- This README assumes you will use `uv` as your package manager.
76
-
77
- You can install it following the instructions [here](https://docs.astral.sh/uv/getting-started/installation/)
78
-
79
- If you are going to push to the repository, please make sure to install git pre-commit hooks by running
80
-
81
- ```bash
82
- uv run pre-commit install
83
- ```
84
-
85
- # How to run?
86
-
87
- You can run it with:
88
-
89
- ```bash
90
- uv run dce info
91
- ```
92
-
93
- Not providing the `info` subcommand or using the `--help` flag will show the help screen for the command.
94
-
95
- ## Using the dce command directly
96
-
97
- To be able to use the `dce` command directly (without using `uv run` or `python`) there are two options.
98
-
99
- ### Installing dce locally
100
-
101
- For that one needs to:
102
-
103
- 1. Build the project by running
104
-
105
- ```bash
106
- uv build
107
- ```
108
-
109
- 2. Installing the project on our machine by running:
110
-
111
- ```bash
112
- uv tool install -e .
113
- ```
114
-
115
- This second step will install the `dce` script on your machine and add it into your path.
116
-
117
- ### Create dce alias using nix
118
-
119
- This method will simply create a new shell environment with `dce` alias. For that one needs to install `nix` package
120
- manager (https://nixos.org/download/). After that one could simply run in the project root
121
-
122
- ```bash
123
- $ nix-shell
124
- ```
125
-
126
- which is a short version of `$ nix-shell shell.nix`.
127
-
128
- Alternatively, one could specify the path to the project repository
129
-
130
- ```bash
131
- $ nix-shell {path_to_dce_repository}
132
- ```
133
-
134
- After that, you can then directly use:
135
-
136
- ```bash
137
- dce --help
138
- ```
139
-
140
- Note: when we actually release our built Python package, users that don't use `uv` will still be able to install the CLI
141
- by using `pipx install` instead.
142
-
143
- # Running Mypy
144
-
145
- [mypy](https://mypy.readthedocs.io/en/stable/getting_started.html) has been added to the project for type checking.
146
-
147
- You can run it with the following:
148
-
149
- ```bash
150
- uv run mypy src --exclude "test_*" --exclude dist
151
- ```
152
-
153
- NB: the above runs type checking on all files within the `src` directory, excluding all test files.
154
-
155
- # Running tests
156
-
157
- You can run the tests with:
158
-
159
- ```bash
160
- uv run pytest
161
- ```
162
-
163
- (there is currently one test succeeding and one test failing in the project)
164
-
165
- # Generating JSON Schemas for our plugin's config files
166
-
167
- To be able to build a datasource, each plugin requires a yaml config file that describes how to connect to the
168
- datasource,
169
- as well as other information needed to customise the plugin.
170
-
171
- To document what each config file should look like, we can generate a JSON schema describing the fields allowed in that
172
- file.
173
-
174
- You can generate all JSON schemas for all plugins by running:
175
-
176
- ```bash
177
- uv run generate_configs_schemas
178
- ```
179
-
180
- Some options can be provided to the command to choose which plugins to include or exclude from the generation.
181
- To see the options available, you can refer to the help:
182
-
183
- ```bash
184
- uv run generate_configs_schemas --help
185
- ```
186
-
@@ -1,135 +0,0 @@
1
- databao_context_engine/__init__.py,sha256=QCHPU_RIOT76gFU6WX3ry5gO6SV807lbi1-Fvx7pLFE,1532
2
- databao_context_engine/build_sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- databao_context_engine/build_sources/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- databao_context_engine/build_sources/internal/build_runner.py,sha256=n-s_WQipPEXIt7pAZwlfDFSb9C5S5x_ZRSGR0uPqbt4,3656
5
- databao_context_engine/build_sources/internal/build_service.py,sha256=J_brFE2M5ICvY9skdPY4sH8qLYlVZybZBXlosN-_Ct4,2706
6
- databao_context_engine/build_sources/internal/build_wiring.py,sha256=ZeNL5xkL5t4stwPH5c1Nr9nFoxWF-0Hsgg645YxF9Lg,2048
7
- databao_context_engine/build_sources/internal/export_results.py,sha256=f3W_NaIvm4z1GF9pgvtaWILx5r-114EtErDglYnU79k,1736
8
- databao_context_engine/build_sources/internal/plugin_execution.py,sha256=ZCDceJD9QCQDdsHdOf7oK7tTTuE_Wwyet3jL400WvJg,2226
9
- databao_context_engine/build_sources/public/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- databao_context_engine/build_sources/public/api.py,sha256=mZRL5V9Z0nU8uF9mjaNrgrulU9boLdPA8-ssuO2_bIc,242
11
- databao_context_engine/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
- databao_context_engine/cli/add_datasource_config.py,sha256=TdPftFe1KP_KG8YokqxteEM_gVUts_HPwejsVXzcLVQ,5395
13
- databao_context_engine/cli/commands.py,sha256=PnG4IkuAh07rYVxHlnqbxLMbGXETwNwQrrjAu9it0Q0,7730
14
- databao_context_engine/cli/datasources.py,sha256=kHbXhEnDVaYXTRAE3WeaDGohH1Y9cwyYjjcycQ8eh1U,2376
15
- databao_context_engine/cli/info.py,sha256=Fwj4haOYhnkQ5R2TvrVpw2feUe-ucuMatUxpHIWqIaw,1119
16
- databao_context_engine/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
17
- databao_context_engine/config/log_config.yaml,sha256=hH2NPumufcyig8L-7Z_DbLQ88_G2N6CAEl5fvHafeAw,360
18
- databao_context_engine/config/logging.py,sha256=66k7x3ftEdHx-CKqbOss4pqZfGn4nMFv7AzVPs9aVnY,1525
19
- databao_context_engine/databao_context_project_manager.py,sha256=-xV8bJ8Gjd6eAgH4CFcTT8vnBXXk85uUmJKEAjntTaw,3699
20
- databao_context_engine/databao_engine.py,sha256=EZxVoNJwmOsOdlwtCOS52M07LUg0b7usI_iMQUiz6xw,3113
21
- databao_context_engine/datasource_config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- databao_context_engine/datasource_config/add_config.py,sha256=t9dnfvqU3BQYFilCBztyeneFBFPrvEwW3Z2LS8aQNlE,2112
23
- databao_context_engine/datasource_config/check_config.py,sha256=Bs4_jTovROXKk9dOiL6egSpdTRb0FG8_23xqqJx3f8I,4995
24
- databao_context_engine/datasource_config/datasource_context.py,sha256=jks73wWIF6448ZPd23a2zu_Znwf_pkJmbW0OcQ0ED1M,2403
25
- databao_context_engine/event_journal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
- databao_context_engine/event_journal/writer.py,sha256=abkl2SPHYzO8XAUsjbtrcXm6WQk15zWpXhYm86qb6G0,986
27
- databao_context_engine/generate_configs_schemas.py,sha256=OBX1Motg_d-fmZCUnDoF-3c8dYbDcTOJmhD7F0WJHH8,3017
28
- databao_context_engine/init_project.py,sha256=j5y_3sK3ug77rqBFqUEwWbQgg3aJaRbqJoumEYMMaJQ,738
29
- databao_context_engine/introspection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
- databao_context_engine/introspection/property_extract.py,sha256=kT1rS_6V8nBjrw-Vc6PtY5bcqZuXsew5eSHjS6XB0Dw,7484
31
- databao_context_engine/llm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
32
- databao_context_engine/llm/config.py,sha256=geIygR-9maeKbvmcO5J3iNZXKS4LZc7zpKYyaH8vCoI,463
33
- databao_context_engine/llm/descriptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
- databao_context_engine/llm/descriptions/ollama.py,sha256=XhXQD8j7OAHiKL0TjZPpNtDDoIV0NI0u92PTksejc5g,657
35
- databao_context_engine/llm/descriptions/provider.py,sha256=nojEI0l55TfFuNooQwGNvfa2k6A1vZ1Oi3PBLAr9eFo,227
36
- databao_context_engine/llm/embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
- databao_context_engine/llm/embeddings/ollama.py,sha256=GQzlMBRJGJe_xreY9-Y3REBFWWaOyKhiGQxWxrR6xfY,949
38
- databao_context_engine/llm/embeddings/provider.py,sha256=IVrOptwad2Fr1wf1SBOM3-7y66k08mOZnga1NA6yhbA,300
39
- databao_context_engine/llm/errors.py,sha256=7Dj2bxydWAyF03iHt4NCuxBAmutyGrqapEZavpU0Sd4,430
40
- databao_context_engine/llm/factory.py,sha256=VSCVAWXV6d496SWDyUH4rGYGXQ3Q6yg9Ymc8C6x8EXQ,1765
41
- databao_context_engine/llm/install.py,sha256=YlOAYOGG2pIlAjeNxYjYGrlN7CSEadD_lO628i6i8DQ,6513
42
- databao_context_engine/llm/runtime.py,sha256=jf_sPDF4s_fChFj2enLcEIBXIWjSjaYNh-l6lXIgRd4,2173
43
- databao_context_engine/llm/service.py,sha256=JOI8ZbZm6XQ_ZDj8_jdfiqUOL5SAWwgwMpxbX9Zie68,5995
44
- databao_context_engine/main.py,sha256=3gWwEc9GZJUFANJtW9Fx4smVzib_sDtFkBGPILjisaI,350
45
- databao_context_engine/mcp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
- databao_context_engine/mcp/all_results_tool.py,sha256=1Jc6DZUgbuNSnOqDBjTiW6H-Xag5lg0QY3LdPzZFuj4,239
47
- databao_context_engine/mcp/mcp_runner.py,sha256=sBBNsr3ivJTCYdBwRo3LJdSMWVDVcjVP3v1n5MOWC6A,386
48
- databao_context_engine/mcp/mcp_server.py,sha256=tVyQlE1hJE2hWgd6D_v3Y6D9KpnvHbXk5LfRm2tgOVM,2254
49
- databao_context_engine/mcp/retrieve_tool.py,sha256=rydPXDTPvVPPUMZQuQeUcr9mzqC0MSS5em2xtHsrjKI,719
50
- databao_context_engine/pluginlib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
- databao_context_engine/pluginlib/build_plugin.py,sha256=icmGh_6yAyN7DSCLdjS9PPRKETNfkRsK0SzCf8IDMx8,3236
52
- databao_context_engine/pluginlib/config.py,sha256=W3ZUGY2zModUkC-H0v2-aTPiAAKDZbdz_6H8AsPnr80,1174
53
- databao_context_engine/pluginlib/plugin_utils.py,sha256=f76ksdMUG3Wy4KOytUYxLMrq9iOHytu3QF8wc5NzzJE,2471
54
- databao_context_engine/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
55
- databao_context_engine/plugins/athena_db_plugin.py,sha256=53Dui_V7MunJ3jmyYEAmkZofuHtQP-Ic3bNhsxTwAyc,456
56
- databao_context_engine/plugins/base_db_plugin.py,sha256=uuzKSEtszKnxL-cBg5ya6TxQHq8oqlIicUbZlkoyxlI,1562
57
- databao_context_engine/plugins/clickhouse_db_plugin.py,sha256=4J1CNoeWPRvgmgkww7CQALxTP5D9eSLl1TpDRgwHBew,509
58
- databao_context_engine/plugins/databases/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
59
- databao_context_engine/plugins/databases/athena_introspector.py,sha256=k6vRBDA-GnSFvhmso2K4BXf7PdB-4yTnOst2Ih8DfNM,3900
60
- databao_context_engine/plugins/databases/base_introspector.py,sha256=eilvWrIB407N4ALo2DG88lEQ2O28wR6_iJrZHOEfU3U,5750
61
- databao_context_engine/plugins/databases/clickhouse_introspector.py,sha256=uQTimT6kjhMEacyXvfCRGaJpFXfHdHRE7uDaOpl5dXg,6105
62
- databao_context_engine/plugins/databases/database_chunker.py,sha256=dn9Mb9Sw4f8IwBe9RtukQGT0yyKLQt5i4tjvsrFh1ew,2100
63
- databao_context_engine/plugins/databases/databases_types.py,sha256=kYZEaFa_cnROg_n1k7tIonoC2VunLBe5SQR47GOt_8k,2579
64
- databao_context_engine/plugins/databases/duckdb_introspector.py,sha256=LPnK7HeuFJ_VSXZvqoMqeVjXFGvZAviTwc0gNQTbsjY,11440
65
- databao_context_engine/plugins/databases/introspection_model_builder.py,sha256=nfQLKVbwaWY12lnWrpCoVY2rolW263IwvWg7NkLjtk0,10350
66
- databao_context_engine/plugins/databases/introspection_scope.py,sha256=MPCcMpZaf3ENGoaxqHCS-PK9zrLFd9KFqZx4d6qzCH0,2191
67
- databao_context_engine/plugins/databases/introspection_scope_matcher.py,sha256=9Zi5csHNIXET2PVzrSF-bI1LST1sA9N6Nye2WCGpUoo,3620
68
- databao_context_engine/plugins/databases/mssql_introspector.py,sha256=giqwPPB_VuRqJJny7KnsknpzqEeqzxc3etYclcEiHro,18545
69
- databao_context_engine/plugins/databases/mysql_introspector.py,sha256=SD5QADWefbBs1a7Xutq4U0e2VhRXki68yixIUvOk8Uo,14051
70
- databao_context_engine/plugins/databases/postgresql_introspector.py,sha256=3f42ludqg6w0I9iDaubqHKFDNBEcWP3jqd1sctXzfUg,17463
71
- databao_context_engine/plugins/databases/snowflake_introspector.py,sha256=rZ6hQxWciiph8nhHVHHC1glaVoRfS6eLG2PfMtromM0,11065
72
- databao_context_engine/plugins/duckdb_db_plugin.py,sha256=uumf9kXz6U-6QbX0i1ChHHxxvdq5_di3gTNpVDUCYdg,451
73
- databao_context_engine/plugins/mssql_db_plugin.py,sha256=YVor2QMDuL6XOLT8RFPOgs1Uhj1ZVYoFP5DApDJFPaE,446
74
- databao_context_engine/plugins/mysql_db_plugin.py,sha256=wy8HTiYuE8GTxfoc5gdrinEYv7NWHGrslzaAzruQecY,446
75
- databao_context_engine/plugins/parquet_plugin.py,sha256=qlpzQmiEwpb8Jma50HoIvljGV5ZiWkZU7GSiGV7M6kc,1181
76
- databao_context_engine/plugins/plugin_loader.py,sha256=iJyuizRQlFRmgPelLl3QQr71avlpbyxpiLoe5oPjEdw,3667
77
- databao_context_engine/plugins/postgresql_db_plugin.py,sha256=PwLErcbqixsgz4Tqoift0uyerUqP_OaRzMaMAn0TE5A,486
78
- databao_context_engine/plugins/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
79
- databao_context_engine/plugins/resources/parquet_chunker.py,sha256=R9WCOBqpKRTVN6t5eeOm_mmnKBOxvjIiQ9zTc8vnUb4,848
80
- databao_context_engine/plugins/resources/parquet_introspector.py,sha256=HJzfBEjzAQlUI_-BLBNNMSrMLbVRPPCpjG_Fowy3_40,6175
81
- databao_context_engine/plugins/snowflake_db_plugin.py,sha256=ApiVE212DU9F4Zj1HPof6JQ66n4LUeYRRwhlTWRCxek,486
82
- databao_context_engine/plugins/unstructured_files_plugin.py,sha256=TWV3fluusizul2YEN-YZ-K-C3s5W-5B8353-bjP53L8,2424
83
- databao_context_engine/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
84
- databao_context_engine/project/datasource_discovery.py,sha256=Hdu_pu_Ah1xCQ-Y-DGcJAD14dklNOtW5hCq03KFSkSk,4983
85
- databao_context_engine/project/info.py,sha256=7cbNTxHfah-2nTcMa4wZt1M3lxgp9voiKMY7LWw4tGk,1155
86
- databao_context_engine/project/init_project.py,sha256=TAVLGX7WlIsLvd4KAsB5Qf0NOXZfXl_CknuxRzr_-5w,3736
87
- databao_context_engine/project/layout.py,sha256=Q7AyiBwPnks98IfDKXB8eCzdwnMbkg8x1wd_1xCjfVo,4291
88
- databao_context_engine/project/project_config.py,sha256=rI-Wkll7lca7RlYIaFScs5CIKIZ8uujtKRxSjibGIt8,1132
89
- databao_context_engine/project/resources/examples/src/databases/example_postgres.yaml,sha256=5o6jF_zR4WSvS9QcZnGW-S2FmahsjNp-tMbAkzbNabo,139
90
- databao_context_engine/project/resources/examples/src/files/documentation.md,sha256=k5G5lrN4S_ie2o7CBxXgLiWGIGtb3v-77c_3n4C7Lvw,1090
91
- databao_context_engine/project/resources/examples/src/files/notes.txt,sha256=0T1u8lIwIRwNopEsfWmqfIbhfRl-DN3XuiIN7suRAiE,3668
92
- databao_context_engine/project/runs.py,sha256=HjoIhAIy3iTQQCvGtf2j-uuoRJL_66ODCyTLOE_Popc,1733
93
- databao_context_engine/project/types.py,sha256=STCLEVd8b_Kwmv_ajwOgBheSyE8enbAfYPxjGogzRFI,4758
94
- databao_context_engine/retrieve_embeddings/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
- databao_context_engine/retrieve_embeddings/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
- databao_context_engine/retrieve_embeddings/internal/export_results.py,sha256=q4ztCIEjUSA4lHq3ju1jBzSM3isEqng6m65HkitH09E,331
97
- databao_context_engine/retrieve_embeddings/internal/retrieve_runner.py,sha256=MWDWCI6C7d2rTSAKSPvNsWMpTAlg3pcoPyd7WiovLB4,1264
98
- databao_context_engine/retrieve_embeddings/internal/retrieve_service.py,sha256=EoP3SvaQzdIBKARFBj1OAHw4hz626FxFhHx74sWR4Zc,2732
99
- databao_context_engine/retrieve_embeddings/internal/retrieve_wiring.py,sha256=ZlKV6nls7yDAAdjai6Lg6LZDBEopygFGQXhh5E9HpA4,1386
100
- databao_context_engine/retrieve_embeddings/public/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
101
- databao_context_engine/retrieve_embeddings/public/api.py,sha256=cR0FnnVaLXGY0wEm3y-nCCj8NwdRWRBnuT2oFbjEfVM,135
102
- databao_context_engine/serialisation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
103
- databao_context_engine/serialisation/yaml.py,sha256=_NTW1qDdtX9PstCftNnzFa5B05B9ZJXjQBI6OXv0N24,1255
104
- databao_context_engine/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
105
- databao_context_engine/services/chunk_embedding_service.py,sha256=vtnZ48QcWggfELuJgHgfSsyuvSjlrwXr9LRMC-M5xis,4427
106
- databao_context_engine/services/embedding_shard_resolver.py,sha256=6oOVm6QJb74lEIbYXijWMqISTx1VfmKQaQjdSHr8zDA,2289
107
- databao_context_engine/services/factories.py,sha256=oEKWa9zzHq8BpDNIXMmtpTL8i6MpzEAAcvd6AuMIRvc,3319
108
- databao_context_engine/services/models.py,sha256=wHmk4eheoSopXkCs3v2ggoDAGoTPdHYcADMZ4gdtSCI,299
109
- databao_context_engine/services/persistence_service.py,sha256=WFDr84Yw5-yKvdCaVh_UJ-_CrgwOXwEQthdrm76zqKA,2329
110
- databao_context_engine/services/run_name_policy.py,sha256=2z7HZFG-danHVTJgTTx1bUvZLMYLRKo_ZlIlwpcpIWA,229
111
- databao_context_engine/services/table_name_policy.py,sha256=q0scAQ_ZoTrV8V0J6cmxvsMYxTcmUlAqEWpzZUitpLQ,567
112
- databao_context_engine/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
113
- databao_context_engine/storage/connection.py,sha256=FsDJeDfQMmQbPvXUDZ2YDf_IWO9WDwPc59ADbhAgyco,870
114
- databao_context_engine/storage/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
115
- databao_context_engine/storage/exceptions/exceptions.py,sha256=clk0OnpFqVqJTe0lXj-yNN2V7LFw30Nv1Ckz9gA-eyw,172
116
- databao_context_engine/storage/migrate.py,sha256=C2M7Kfk6yKd8LM4Pc7RFiU3TT0HaR4a1JN0l9PomQwI,4691
117
- databao_context_engine/storage/migrations/V01__init.sql,sha256=5Cf2NxnOPYFgkXFolFUFuqbYIVoMSlvuGNeuX_-KE50,2475
118
- databao_context_engine/storage/models.py,sha256=7Gs8CHlXXjbjaqfq2CS9CM0LlL-7w9Yp9exhvqsjrdY,971
119
- databao_context_engine/storage/repositories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
120
- databao_context_engine/storage/repositories/chunk_repository.py,sha256=1I6aqYwmZybfI9aGF3hrFykPNQV9z1kNbvwUwgab8DE,3671
121
- databao_context_engine/storage/repositories/datasource_run_repository.py,sha256=k9kfAwEnEiYZoeasLzo-4AI-l8WAEUl3r9M9qVAkmVI,3952
122
- databao_context_engine/storage/repositories/embedding_model_registry_repository.py,sha256=g91WCflYRc5jPDbW9RBp5HxWFsSIta4n8OYNwgoLv9c,2413
123
- databao_context_engine/storage/repositories/embedding_repository.py,sha256=UCvr5mf2jTJgX_uMdLIMiN5NWa8Zn1U3HEr19TQRXAw,3278
124
- databao_context_engine/storage/repositories/factories.py,sha256=oA7UugL0rshMsV323h6F7yFYHHIPuZg22U1VUrFrEz8,1506
125
- databao_context_engine/storage/repositories/run_repository.py,sha256=gTlkPoESdfJJgqeHtV4ge17LGljzdRPbwIwX2ORjfkQ,4348
126
- databao_context_engine/storage/repositories/vector_search_repository.py,sha256=Y87CPreJcVVUvWmcq4YyzdpthP8K42ag5_TrpovWqCw,2187
127
- databao_context_engine/storage/transaction.py,sha256=QpfE1VtgDd3_7OBzFYI3HPJJ7ESXkgCdcWukFkAjbSg,270
128
- databao_context_engine/system/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
- databao_context_engine/system/properties.py,sha256=RoEemdpD30blMyw5bRpzH0jjbS42TCODFdBpVD8jEG4,333
130
- databao_context_engine/templating/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
131
- databao_context_engine/templating/renderer.py,sha256=W2-0IGStAp6oxANmsKs_Z-UoIR6Gt_c4ILYFa3Hruo4,662
132
- databao_context_engine-0.1.1.dist-info/WHEEL,sha256=eycQt0QpYmJMLKpE3X9iDk8R04v2ZF0x82ogq-zP6bQ,79
133
- databao_context_engine-0.1.1.dist-info/entry_points.txt,sha256=5EeQJ1W8zEFh4HuF1bs2zBeoP408oiwuM9UrkJiurgI,138
134
- databao_context_engine-0.1.1.dist-info/METADATA,sha256=kYcEWFqJFbqu_5izIGF4_7m7JQ42p28p66usaO7ydLU,5915
135
- databao_context_engine-0.1.1.dist-info/RECORD,,