langchain-timbr 1.5.1__tar.gz → 1.5.2__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.
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/.github/workflows/publish.yml +8 -4
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/.gitignore +1 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/PKG-INFO +8 -5
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/README.md +6 -3
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/pyproject.toml +1 -1
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/_version.py +2 -2
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/.github/dependabot.yml +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/.github/pull_request_template.md +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/.github/workflows/_codespell.yml +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/.github/workflows/_fossa.yml +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/.github/workflows/install-dependencies-and-run-tests.yml +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/LICENSE +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/pytest.ini +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/requirements.txt +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/__init__.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/config.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/langchain/__init__.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/langchain/execute_timbr_query_chain.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/langchain/generate_answer_chain.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/langchain/generate_timbr_sql_chain.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/langchain/identify_concept_chain.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/langchain/timbr_sql_agent.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/langchain/validate_timbr_sql_chain.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/langgraph/__init__.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/langgraph/execute_timbr_query_node.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/langgraph/generate_response_node.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/langgraph/generate_timbr_sql_node.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/langgraph/identify_concept_node.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/langgraph/validate_timbr_query_node.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/llm_wrapper/llm_wrapper.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/llm_wrapper/timbr_llm_wrapper.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/timbr_llm_connector.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/utils/general.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/utils/prompt_service.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/utils/temperature_supported_models.json +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/utils/timbr_llm_utils.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/utils/timbr_utils.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/README.md +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/conftest.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/integration/test_agent_integration.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/integration/test_azure_openai_model.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/integration/test_chain_pipeline.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/integration/test_jwt_token.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/integration/test_langchain_chains.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/integration/test_langgraph_nodes.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/integration/test_timeout_functionality.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/standard/conftest.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/standard/test_chain_documentation.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/standard/test_standard_chain_requirements.py +0 -0
- {langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/standard/test_unit_tests.py +0 -0
|
@@ -6,7 +6,11 @@ on:
|
|
|
6
6
|
|
|
7
7
|
jobs:
|
|
8
8
|
build-publish:
|
|
9
|
+
environment: pypi
|
|
9
10
|
runs-on: ubuntu-latest
|
|
11
|
+
permissions:
|
|
12
|
+
id-token: write
|
|
13
|
+
contents: read
|
|
10
14
|
steps:
|
|
11
15
|
- uses: actions/checkout@v4
|
|
12
16
|
with: { fetch-depth: 0 } # IMPORTANT: tags available to hatch-vcs
|
|
@@ -14,7 +18,7 @@ jobs:
|
|
|
14
18
|
with: { python-version: "3.12" }
|
|
15
19
|
- run: python -m pip install --upgrade build twine
|
|
16
20
|
- run: python -m build # hatch-vcs injects version from tag
|
|
17
|
-
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
+
- name: Publish to PyPI
|
|
22
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
23
|
+
with:
|
|
24
|
+
password: ${{ secrets.PYPI_API_TOKEN }}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: langchain-timbr
|
|
3
|
-
Version: 1.5.
|
|
3
|
+
Version: 1.5.2
|
|
4
4
|
Summary: LangChain & LangGraph extensions that parse LLM prompts into Timbr semantic SQL and execute them.
|
|
5
5
|
Project-URL: Homepage, https://github.com/WPSemantix/langchain-timbr
|
|
6
6
|
Project-URL: Documentation, https://docs.timbr.ai/doc/docs/integration/langchain-sdk/
|
|
7
7
|
Project-URL: Source, https://github.com/WPSemantix/langchain-timbr
|
|
8
8
|
Project-URL: Issues, https://github.com/WPSemantix/langchain-timbr/issues
|
|
9
|
-
Author-email:
|
|
9
|
+
Author-email: "Timbr.ai" <contact@timbr.ai>
|
|
10
10
|
License: MIT
|
|
11
11
|
License-File: LICENSE
|
|
12
12
|
Keywords: Agents,Knowledge Graph,LLM,LangChain,LangGraph,SQL,Semantic Layer,Timbr
|
|
@@ -71,9 +71,12 @@ Description-Content-Type: text/markdown
|
|
|
71
71
|
[](https://www.python.org/downloads/release/python-31112/)
|
|
72
72
|
[](https://www.python.org/downloads/release/python-3129/)
|
|
73
73
|
|
|
74
|
-
# Timbr
|
|
74
|
+
# Timbr LangChain LLM SDK
|
|
75
|
+
|
|
76
|
+
Timbr LangChain LLM SDK is a Python SDK that extends LangChain and LangGraph with custom agents, chains, and nodes for seamless integration with the Timbr semantic layer. It enables converting natural language prompts into optimized semantic-SQL queries and executing them directly against your data.
|
|
77
|
+
|
|
78
|
+

|
|
75
79
|
|
|
76
|
-
Timbr langchain LLM SDK is a Python SDK that extends LangChain and LangGraph with custom agents, chains, and nodes for seamless integration with the Timbr semantic layer. It enables converting natural language prompts into optimized semantic-SQL queries and executing them directly against your data.
|
|
77
80
|
|
|
78
81
|
## Dependencies
|
|
79
82
|
- Access to a timbr-server
|
|
@@ -100,4 +103,4 @@ For comprehensive documentation and usage examples, please visit:
|
|
|
100
103
|
|
|
101
104
|
## Configuration
|
|
102
105
|
|
|
103
|
-
The SDK requires several environment variables to be configured. See [`
|
|
106
|
+
The SDK requires several environment variables to be configured. See [`langchain_timbr/config.py`](https://github.com/WPSemantix/langchain-timbr/blob/main/src/langchain_timbr/config.py) for all available configuration options.
|
|
@@ -8,9 +8,12 @@
|
|
|
8
8
|
[](https://www.python.org/downloads/release/python-31112/)
|
|
9
9
|
[](https://www.python.org/downloads/release/python-3129/)
|
|
10
10
|
|
|
11
|
-
# Timbr
|
|
11
|
+
# Timbr LangChain LLM SDK
|
|
12
|
+
|
|
13
|
+
Timbr LangChain LLM SDK is a Python SDK that extends LangChain and LangGraph with custom agents, chains, and nodes for seamless integration with the Timbr semantic layer. It enables converting natural language prompts into optimized semantic-SQL queries and executing them directly against your data.
|
|
14
|
+
|
|
15
|
+

|
|
12
16
|
|
|
13
|
-
Timbr langchain LLM SDK is a Python SDK that extends LangChain and LangGraph with custom agents, chains, and nodes for seamless integration with the Timbr semantic layer. It enables converting natural language prompts into optimized semantic-SQL queries and executing them directly against your data.
|
|
14
17
|
|
|
15
18
|
## Dependencies
|
|
16
19
|
- Access to a timbr-server
|
|
@@ -37,4 +40,4 @@ For comprehensive documentation and usage examples, please visit:
|
|
|
37
40
|
|
|
38
41
|
## Configuration
|
|
39
42
|
|
|
40
|
-
The SDK requires several environment variables to be configured. See [`
|
|
43
|
+
The SDK requires several environment variables to be configured. See [`langchain_timbr/config.py`](https://github.com/WPSemantix/langchain-timbr/blob/main/src/langchain_timbr/config.py) for all available configuration options.
|
|
@@ -9,7 +9,7 @@ description = "LangChain & LangGraph extensions that parse LLM prompts into Timb
|
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9,<3.13"
|
|
11
11
|
license = {text = "MIT"}
|
|
12
|
-
authors = [{ name = "
|
|
12
|
+
authors = [{ name = "Timbr.ai", email = "contact@timbr.ai" }]
|
|
13
13
|
keywords = ["LLM", "LangChain", "LangGraph", "Timbr", "Semantic Layer", "Knowledge Graph", "SQL", "Agents"]
|
|
14
14
|
classifiers = [
|
|
15
15
|
"License :: OSI Approved :: MIT License",
|
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '1.5.
|
|
32
|
-
__version_tuple__ = version_tuple = (1, 5,
|
|
31
|
+
__version__ = version = '1.5.2'
|
|
32
|
+
__version_tuple__ = version_tuple = (1, 5, 2)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
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
|
{langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/langchain/timbr_sql_agent.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/llm_wrapper/llm_wrapper.py
RENAMED
|
File without changes
|
{langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/llm_wrapper/timbr_llm_wrapper.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/src/langchain_timbr/utils/timbr_llm_utils.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/integration/test_azure_openai_model.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/integration/test_timeout_functionality.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{langchain_timbr-1.5.1 → langchain_timbr-1.5.2}/tests/standard/test_standard_chain_requirements.py
RENAMED
|
File without changes
|
|
File without changes
|