langchain-timbr 1.5.5__py3-none-any.whl → 2.0.0__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.
- langchain_timbr/_version.py +2 -2
- {langchain_timbr-1.5.5.dist-info → langchain_timbr-2.0.0.dist-info}/METADATA +27 -2
- {langchain_timbr-1.5.5.dist-info → langchain_timbr-2.0.0.dist-info}/RECORD +5 -5
- {langchain_timbr-1.5.5.dist-info → langchain_timbr-2.0.0.dist-info}/WHEEL +0 -0
- {langchain_timbr-1.5.5.dist-info → langchain_timbr-2.0.0.dist-info}/licenses/LICENSE +0 -0
langchain_timbr/_version.py
CHANGED
|
@@ -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 = '
|
|
32
|
-
__version_tuple__ = version_tuple = (
|
|
31
|
+
__version__ = version = '2.0.0'
|
|
32
|
+
__version_tuple__ = version_tuple = (2, 0, 0)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: langchain-timbr
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0
|
|
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/
|
|
@@ -121,4 +121,29 @@ For comprehensive documentation and usage examples, please visit:
|
|
|
121
121
|
|
|
122
122
|
## Configuration
|
|
123
123
|
|
|
124
|
-
The SDK
|
|
124
|
+
The SDK uses environment variables for configuration. All configurations are optional - when set, they serve as default values for `langchain-timbr` provided tools. Below are all available configuration options:
|
|
125
|
+
|
|
126
|
+
### Configuration Options
|
|
127
|
+
|
|
128
|
+
#### Timbr Connection Settings
|
|
129
|
+
|
|
130
|
+
- **`TIMBR_URL`** - The URL of your Timbr server
|
|
131
|
+
- **`TIMBR_TOKEN`** - Authentication token for accessing the Timbr server
|
|
132
|
+
- **`TIMBR_ONTOLOGY`** - The ontology to use (also accepts `ONTOLOGY` as an alias)
|
|
133
|
+
- **`IS_JWT`** - Whether the token is a JWT token (true/false)
|
|
134
|
+
- **`JWT_TENANT_ID`** - Tenant ID for JWT authentication
|
|
135
|
+
|
|
136
|
+
#### Cache and Data Processing
|
|
137
|
+
|
|
138
|
+
- **`CACHE_TIMEOUT`** - Timeout for caching operations in seconds
|
|
139
|
+
- **`IGNORE_TAGS`** - Comma-separated list of tags to ignore during processing
|
|
140
|
+
- **`IGNORE_TAGS_PREFIX`** - Comma-separated list of tag prefixes to ignore during processing
|
|
141
|
+
|
|
142
|
+
#### LLM Configuration
|
|
143
|
+
|
|
144
|
+
- **`LLM_TYPE`** - The type of LLM provider to use
|
|
145
|
+
- **`LLM_MODEL`** - The specific model to use with the LLM provider
|
|
146
|
+
- **`LLM_API_KEY`** - API key for the LLM provider
|
|
147
|
+
- **`LLM_TEMPERATURE`** - Temperature setting for LLM responses (controls randomness)
|
|
148
|
+
- **`LLM_ADDITIONAL_PARAMS`** - Additional parameters to pass to the LLM
|
|
149
|
+
- **`LLM_TIMEOUT`** - Timeout for LLM requests in seconds
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
langchain_timbr/__init__.py,sha256=gxd6Y6QDmYZtPlYVdXtPIy501hMOZXHjWh2qq4qzt_s,828
|
|
2
|
-
langchain_timbr/_version.py,sha256
|
|
2
|
+
langchain_timbr/_version.py,sha256=IVJRXufGjjlpCRVrnll1svFy181ozZaXe7LKnGKKesg,704
|
|
3
3
|
langchain_timbr/config.py,sha256=DT2__mjaFCh8Eynm4czQM8vKRTxYVcNX3UJNU3epJwo,934
|
|
4
4
|
langchain_timbr/timbr_llm_connector.py,sha256=OXRttlEOJf-dTyilnXR6b6Cgl_cWDYrXGXQfmDV6vc8,13206
|
|
5
5
|
langchain_timbr/langchain/__init__.py,sha256=ejcsZKP9PK0j4WrrCCcvBXpDpP-TeRiVb21OIUJqix8,580
|
|
@@ -22,7 +22,7 @@ langchain_timbr/utils/prompt_service.py,sha256=QT7kiq72rQno77z1-tvGGD7HlH_wdTQAl
|
|
|
22
22
|
langchain_timbr/utils/temperature_supported_models.json,sha256=d3UmBUpG38zDjjB42IoGpHTUaf0pHMBRSPY99ao1a3g,1832
|
|
23
23
|
langchain_timbr/utils/timbr_llm_utils.py,sha256=7-nnTa1T9XOcgIb-aJP3Pgon_gOrCMnDPiIPiAT3UCg,23016
|
|
24
24
|
langchain_timbr/utils/timbr_utils.py,sha256=p21DwTGhF4iKTLDQBkeBaJDFcXt-Hpu1ij8xzQt00Ng,16958
|
|
25
|
-
langchain_timbr-
|
|
26
|
-
langchain_timbr-
|
|
27
|
-
langchain_timbr-
|
|
28
|
-
langchain_timbr-
|
|
25
|
+
langchain_timbr-2.0.0.dist-info/METADATA,sha256=Lq9BB4u0TNB7QouHeD7dpKIZZZWmMVUd2Oj85oUYSoY,7184
|
|
26
|
+
langchain_timbr-2.0.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
27
|
+
langchain_timbr-2.0.0.dist-info/licenses/LICENSE,sha256=0ITGFk2alkC7-e--bRGtuzDrv62USIiVyV2Crf3_L_0,1065
|
|
28
|
+
langchain_timbr-2.0.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|