llumo 0.2.30__tar.gz → 0.2.31__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 (26) hide show
  1. {llumo-0.2.30/llumo.egg-info → llumo-0.2.31}/PKG-INFO +1 -1
  2. {llumo-0.2.30 → llumo-0.2.31}/llumo/llumoSessionContext.py +10 -3
  3. {llumo-0.2.30 → llumo-0.2.31/llumo.egg-info}/PKG-INFO +1 -1
  4. {llumo-0.2.30 → llumo-0.2.31}/LICENSE +0 -0
  5. {llumo-0.2.30 → llumo-0.2.31}/MANIFEST.in +0 -0
  6. {llumo-0.2.30 → llumo-0.2.31}/README.md +0 -0
  7. {llumo-0.2.30 → llumo-0.2.31}/llumo/__init__.py +0 -0
  8. {llumo-0.2.30 → llumo-0.2.31}/llumo/callback.py +0 -0
  9. {llumo-0.2.30 → llumo-0.2.31}/llumo/callbacks-0.py +0 -0
  10. {llumo-0.2.30 → llumo-0.2.31}/llumo/chains.py +0 -0
  11. {llumo-0.2.30 → llumo-0.2.31}/llumo/client.py +0 -0
  12. {llumo-0.2.30 → llumo-0.2.31}/llumo/exceptions.py +0 -0
  13. {llumo-0.2.30 → llumo-0.2.31}/llumo/execution.py +0 -0
  14. {llumo-0.2.30 → llumo-0.2.31}/llumo/functionCalling.py +0 -0
  15. {llumo-0.2.30 → llumo-0.2.31}/llumo/google.py +0 -0
  16. {llumo-0.2.30 → llumo-0.2.31}/llumo/helpingFuntions.py +0 -0
  17. {llumo-0.2.30 → llumo-0.2.31}/llumo/llumoLogger.py +0 -0
  18. {llumo-0.2.30 → llumo-0.2.31}/llumo/models.py +0 -0
  19. {llumo-0.2.30 → llumo-0.2.31}/llumo/openai.py +0 -0
  20. {llumo-0.2.30 → llumo-0.2.31}/llumo/sockets.py +0 -0
  21. {llumo-0.2.30 → llumo-0.2.31}/llumo.egg-info/SOURCES.txt +0 -0
  22. {llumo-0.2.30 → llumo-0.2.31}/llumo.egg-info/dependency_links.txt +0 -0
  23. {llumo-0.2.30 → llumo-0.2.31}/llumo.egg-info/requires.txt +0 -0
  24. {llumo-0.2.30 → llumo-0.2.31}/llumo.egg-info/top_level.txt +0 -0
  25. {llumo-0.2.30 → llumo-0.2.31}/setup.cfg +0 -0
  26. {llumo-0.2.30 → llumo-0.2.31}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llumo
3
- Version: 0.2.30
3
+ Version: 0.2.31
4
4
  Summary: Python SDK for interacting with the Llumo ai API.
5
5
  Home-page: https://www.llumo.ai/
6
6
  Author: Llumo
@@ -51,9 +51,16 @@ class LlumoSessionContext(LlumoClient):
51
51
  def __exit__(self, excType, excVal, excTb):
52
52
  self.end()
53
53
 
54
- def startLlumoRun(self, runName: str,rowID= "",columnID = ""):
55
- LlumoRunID = str(uuid.uuid4().hex[:16])
56
54
 
55
+ def startLlumoRun(self, runName: str, rowID: str = "", columnID: str = "", runID: str = None):
56
+
57
+ if runID is None:
58
+ LlumoRunID = str(uuid.uuid4().hex[:16])
59
+ else:
60
+ LlumoRunID = runID
61
+
62
+
63
+ # Proceed with using LlumoRunID, rowID, columnID...
57
64
  # if rowID =="":
58
65
  # rowID = str(uuid.uuid4().hex[:16])
59
66
  # if columnID == "":
@@ -107,7 +114,7 @@ class LlumoSessionContext(LlumoClient):
107
114
  }
108
115
 
109
116
  try:
110
- # print(run)
117
+ print(run)
111
118
  response = requests.post(url, headers=headers, json=run, timeout=20)
112
119
  response.raise_for_status()
113
120
  # print(response.json())
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llumo
3
- Version: 0.2.30
3
+ Version: 0.2.31
4
4
  Summary: Python SDK for interacting with the Llumo ai API.
5
5
  Home-page: https://www.llumo.ai/
6
6
  Author: Llumo
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