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.
Files changed (27) hide show
  1. {lmnr-0.2.12 → lmnr-0.2.13}/PKG-INFO +1 -1
  2. {lmnr-0.2.12 → lmnr-0.2.13}/pyproject.toml +2 -2
  3. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/cli.py +0 -4
  4. {lmnr-0.2.12 → lmnr-0.2.13}/LICENSE +0 -0
  5. {lmnr-0.2.12 → lmnr-0.2.13}/README.md +0 -0
  6. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/__init__.py +0 -0
  7. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/__init__.py +0 -0
  8. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/__main__.py +0 -0
  9. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/__init__.py +0 -0
  10. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/__init__.py +0 -0
  11. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/code.py +0 -0
  12. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/condition.py +0 -0
  13. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/input.py +0 -0
  14. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/json_extractor.py +0 -0
  15. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/llm.py +0 -0
  16. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/output.py +0 -0
  17. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/router.py +0 -0
  18. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/semantic_search.py +0 -0
  19. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/nodes/types.py +0 -0
  20. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/parser.py +0 -0
  21. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/parser/utils.py +0 -0
  22. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/cli/zip.py +0 -0
  23. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/sdk/__init__.py +0 -0
  24. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/sdk/endpoint.py +0 -0
  25. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/sdk/registry.py +0 -0
  26. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/sdk/remote_debugger.py +0 -0
  27. {lmnr-0.2.12 → lmnr-0.2.13}/src/lmnr/types.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lmnr
3
- Version: 0.2.12
3
+ Version: 0.2.13
4
4
  Summary: Python SDK for Laminar AI
5
5
  License: Apache-2.0
6
6
  Author: lmnr.ai
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "lmnr"
3
- version = "0.2.12"
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.12"
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