lmnr 0.2.12__tar.gz → 0.2.13__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.
- {lmnr-0.2.12 → lmnr-0.2.13}/PKG-INFO +1 -1
- {lmnr-0.2.12 → lmnr-0.2.13}/pyproject.toml +2 -2
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/cli.py +0 -4
- {lmnr-0.2.12 → lmnr-0.2.13}/LICENSE +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/README.md +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/__init__.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/__init__.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/__main__.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/__init__.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/__init__.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/code.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/condition.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/input.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/json_extractor.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/llm.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/output.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/router.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/semantic_search.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/types.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/parser.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/utils.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/zip.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/sdk/__init__.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/sdk/endpoint.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/sdk/registry.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/sdk/remote_debugger.py +0 -0
- {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/types.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "lmnr"
|
3
|
-
version = "0.2.
|
3
|
+
version = "0.2.13"
|
4
4
|
description = "Python SDK for Laminar AI"
|
5
5
|
authors = [
|
6
6
|
{ name = "lmnr.ai", email = "founders@lmnr.ai" }
|
@@ -11,7 +11,7 @@ license = "Apache-2.0"
|
|
11
11
|
|
12
12
|
[tool.poetry]
|
13
13
|
name = "lmnr"
|
14
|
-
version = "0.2.
|
14
|
+
version = "0.2.13"
|
15
15
|
description = "Python SDK for Laminar AI"
|
16
16
|
authors = ["lmnr.ai"]
|
17
17
|
readme = "README.md"
|
@@ -153,8 +153,6 @@ def dev(project_api_key):
|
|
153
153
|
if not project_api_key:
|
154
154
|
raise ValueError("LMNR_PROJECT_API_KEY is not set")
|
155
155
|
|
156
|
-
print(f"Sys path: {sys.path}")
|
157
|
-
|
158
156
|
cur_dir = os.getcwd() # e.g. /Users/username/project_name
|
159
157
|
parent_dir, name = os.path.split(cur_dir) # e.g. /Users/username, project_name
|
160
158
|
|
@@ -165,8 +163,6 @@ def dev(project_api_key):
|
|
165
163
|
if cur_dir not in sys.path:
|
166
164
|
sys.path.insert(0, cur_dir)
|
167
165
|
|
168
|
-
print(f"Sys path: {sys.path}")
|
169
|
-
|
170
166
|
module_name = f"{name}.pipeline"
|
171
167
|
__import__(module_name)
|
172
168
|
module = sys.modules[module_name]
|
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
|