llumo 0.2.30__py3-none-any.whl → 0.2.31__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.
@@ -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
@@ -9,12 +9,12 @@ llumo/functionCalling.py,sha256=D5jYapu1rIvdIJNUYPYMTyhQ1H-6nkwoOLMi6eekfUE,7241
9
9
  llumo/google.py,sha256=6y9YnDFDRHv6-sQNT5LIsV9p31BCN0B9eow5KTRBWfM,2185
10
10
  llumo/helpingFuntions.py,sha256=RSXMA5XLP6qiMsJW7axp1PZj8RFwY9HkkbG7nwJkbIM,27279
11
11
  llumo/llumoLogger.py,sha256=grdjhu6Ngxg7nhnrMOP5Pd5ALR7U2ROws48yhf_N7y0,1912
12
- llumo/llumoSessionContext.py,sha256=eBlVRDeRmJ8BzfrHNofEiy8DO_TZCwzLo06LlOBcyho,12417
12
+ llumo/llumoSessionContext.py,sha256=s1yu8dP_lrVPdiPQdg80n7Pm_IXoc6_XR2-6oBq5UtI,12585
13
13
  llumo/models.py,sha256=aVEZsOOoQx5LeNtwSyBxqvrINq0izH3QWu_YjsMPE6o,2910
14
14
  llumo/openai.py,sha256=VstBzaORe8Tq0feUIIEszzcN1oq6TJfkPviaCr5d3Bw,8950
15
15
  llumo/sockets.py,sha256=pBDo-U65hMIMwKMwZQl3iBkEjISEt-9BkXxZTWfSHF4,6116
16
- llumo-0.2.30.dist-info/licenses/LICENSE,sha256=tF9yAcfPV9xGT3ViWmC8hPvOo8BEk4ZICbUfcEo8Dlk,182
17
- llumo-0.2.30.dist-info/METADATA,sha256=VstCu1Qq9l_1qrerrHmTt1KFTByH62V1RK2c1XzB78g,1558
18
- llumo-0.2.30.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
- llumo-0.2.30.dist-info/top_level.txt,sha256=d5zUTMI99llPtLRB8rtSrqELm_bOqX-bNC5IcwlDk88,6
20
- llumo-0.2.30.dist-info/RECORD,,
16
+ llumo-0.2.31.dist-info/licenses/LICENSE,sha256=tF9yAcfPV9xGT3ViWmC8hPvOo8BEk4ZICbUfcEo8Dlk,182
17
+ llumo-0.2.31.dist-info/METADATA,sha256=egWsasIoHtLJCrt1RVulJYUSxAqV9PyiWut84AMG2tk,1558
18
+ llumo-0.2.31.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ llumo-0.2.31.dist-info/top_level.txt,sha256=d5zUTMI99llPtLRB8rtSrqELm_bOqX-bNC5IcwlDk88,6
20
+ llumo-0.2.31.dist-info/RECORD,,
File without changes