schema-search 0.1.2__tar.gz → 0.1.5__tar.gz
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.
Potentially problematic release.
This version of schema-search might be problematic. Click here for more details.
- {schema_search-0.1.2/schema_search.egg-info → schema_search-0.1.5}/PKG-INFO +4 -6
- {schema_search-0.1.2 → schema_search-0.1.5}/README.md +2 -2
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/mcp_server.py +1 -1
- {schema_search-0.1.2 → schema_search-0.1.5/schema_search.egg-info}/PKG-INFO +4 -6
- schema_search-0.1.5/schema_search.egg-info/entry_points.txt +2 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/setup.py +3 -5
- schema_search-0.1.2/schema_search.egg-info/entry_points.txt +0 -2
- {schema_search-0.1.2 → schema_search-0.1.5}/LICENSE +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/MANIFEST.in +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/config.yml +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/__init__.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/chunkers/__init__.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/chunkers/base.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/chunkers/factory.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/chunkers/llm.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/chunkers/markdown.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/embedding_cache/__init__.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/embedding_cache/base.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/embedding_cache/bm25.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/embedding_cache/factory.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/embedding_cache/inmemory.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/graph_builder.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/metrics.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/rankers/__init__.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/rankers/base.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/rankers/cross_encoder.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/rankers/factory.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/schema_extractor.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/schema_search.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/search/__init__.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/search/base.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/search/bm25.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/search/factory.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/search/fuzzy.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/search/hybrid.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/search/semantic.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search/types.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search.egg-info/SOURCES.txt +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search.egg-info/dependency_links.txt +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search.egg-info/requires.txt +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/schema_search.egg-info/top_level.txt +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/setup.cfg +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/tests/__init__.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/tests/test_integration.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/tests/test_llm_sql_generation.py +0 -0
- {schema_search-0.1.2 → schema_search-0.1.5}/tests/test_spider_eval.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: schema-search
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Summary: Natural language search for database schemas with graph-aware semantic retrieval
|
|
5
5
|
Home-page: https://github.com/neehan/schema-search
|
|
6
6
|
Author:
|
|
@@ -8,11 +8,9 @@ Classifier: Development Status :: 3 - Alpha
|
|
|
8
8
|
Classifier: Intended Audience :: Developers
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
13
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
-
Requires-Python: >=3.
|
|
13
|
+
Requires-Python: >=3.10
|
|
16
14
|
Description-Content-Type: text/markdown
|
|
17
15
|
License-File: LICENSE
|
|
18
16
|
Requires-Dist: sqlalchemy>=1.4.0
|
|
@@ -109,7 +107,7 @@ Add to your MCP config (e.g., `~/.cursor/mcp.json` or Claude Desktop config):
|
|
|
109
107
|
{
|
|
110
108
|
"mcpServers": {
|
|
111
109
|
"schema-search": {
|
|
112
|
-
"command": "path/to/schema-search
|
|
110
|
+
"command": "path/to/schema-search", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search",
|
|
113
111
|
"args": ["postgresql://user:pass@localhost/db", "optional config.yml path", "optional llm_api_key", "optional llm_base_url"]
|
|
114
112
|
}
|
|
115
113
|
}
|
|
@@ -122,7 +120,7 @@ The LLM API key and base url are only required if you use LLM-generated schema s
|
|
|
122
120
|
### CLI Usage
|
|
123
121
|
|
|
124
122
|
```bash
|
|
125
|
-
schema-search
|
|
123
|
+
schema-search "postgresql://user:pass@localhost/db"
|
|
126
124
|
```
|
|
127
125
|
|
|
128
126
|
Optional args: `[config_path] [llm_api_key] [llm_base_url]`
|
|
@@ -57,7 +57,7 @@ Add to your MCP config (e.g., `~/.cursor/mcp.json` or Claude Desktop config):
|
|
|
57
57
|
{
|
|
58
58
|
"mcpServers": {
|
|
59
59
|
"schema-search": {
|
|
60
|
-
"command": "path/to/schema-search
|
|
60
|
+
"command": "path/to/schema-search", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search",
|
|
61
61
|
"args": ["postgresql://user:pass@localhost/db", "optional config.yml path", "optional llm_api_key", "optional llm_base_url"]
|
|
62
62
|
}
|
|
63
63
|
}
|
|
@@ -70,7 +70,7 @@ The LLM API key and base url are only required if you use LLM-generated schema s
|
|
|
70
70
|
### CLI Usage
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
|
-
schema-search
|
|
73
|
+
schema-search "postgresql://user:pass@localhost/db"
|
|
74
74
|
```
|
|
75
75
|
|
|
76
76
|
Optional args: `[config_path] [llm_api_key] [llm_base_url]`
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: schema-search
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Summary: Natural language search for database schemas with graph-aware semantic retrieval
|
|
5
5
|
Home-page: https://github.com/neehan/schema-search
|
|
6
6
|
Author:
|
|
@@ -8,11 +8,9 @@ Classifier: Development Status :: 3 - Alpha
|
|
|
8
8
|
Classifier: Intended Audience :: Developers
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
13
11
|
Classifier: Programming Language :: Python :: 3.10
|
|
14
12
|
Classifier: Programming Language :: Python :: 3.11
|
|
15
|
-
Requires-Python: >=3.
|
|
13
|
+
Requires-Python: >=3.10
|
|
16
14
|
Description-Content-Type: text/markdown
|
|
17
15
|
License-File: LICENSE
|
|
18
16
|
Requires-Dist: sqlalchemy>=1.4.0
|
|
@@ -109,7 +107,7 @@ Add to your MCP config (e.g., `~/.cursor/mcp.json` or Claude Desktop config):
|
|
|
109
107
|
{
|
|
110
108
|
"mcpServers": {
|
|
111
109
|
"schema-search": {
|
|
112
|
-
"command": "path/to/schema-search
|
|
110
|
+
"command": "path/to/schema-search", // conda: /Users/<username>/opt/miniconda3/envs/<your env>/bin/schema-search",
|
|
113
111
|
"args": ["postgresql://user:pass@localhost/db", "optional config.yml path", "optional llm_api_key", "optional llm_base_url"]
|
|
114
112
|
}
|
|
115
113
|
}
|
|
@@ -122,7 +120,7 @@ The LLM API key and base url are only required if you use LLM-generated schema s
|
|
|
122
120
|
### CLI Usage
|
|
123
121
|
|
|
124
122
|
```bash
|
|
125
|
-
schema-search
|
|
123
|
+
schema-search "postgresql://user:pass@localhost/db"
|
|
126
124
|
```
|
|
127
125
|
|
|
128
126
|
Optional args: `[config_path] [llm_api_key] [llm_base_url]`
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name="schema-search",
|
|
5
|
-
version="0.1.
|
|
5
|
+
version="0.1.5",
|
|
6
6
|
description="Natural language search for database schemas with graph-aware semantic retrieval",
|
|
7
7
|
author="",
|
|
8
8
|
long_description=open("README.md").read(),
|
|
@@ -46,17 +46,15 @@ setup(
|
|
|
46
46
|
},
|
|
47
47
|
entry_points={
|
|
48
48
|
"console_scripts": [
|
|
49
|
-
"schema-search
|
|
49
|
+
"schema-search=schema_search.mcp_server:main",
|
|
50
50
|
],
|
|
51
51
|
},
|
|
52
|
-
python_requires=">=3.
|
|
52
|
+
python_requires=">=3.10",
|
|
53
53
|
classifiers=[
|
|
54
54
|
"Development Status :: 3 - Alpha",
|
|
55
55
|
"Intended Audience :: Developers",
|
|
56
56
|
"License :: OSI Approved :: MIT License",
|
|
57
57
|
"Programming Language :: Python :: 3",
|
|
58
|
-
"Programming Language :: Python :: 3.8",
|
|
59
|
-
"Programming Language :: Python :: 3.9",
|
|
60
58
|
"Programming Language :: Python :: 3.10",
|
|
61
59
|
"Programming Language :: Python :: 3.11",
|
|
62
60
|
],
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|