llumo 0.2.33__tar.gz → 0.2.34__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.
- {llumo-0.2.33/llumo.egg-info → llumo-0.2.34}/PKG-INFO +1 -1
- {llumo-0.2.33 → llumo-0.2.34}/llumo/client.py +10 -12
- {llumo-0.2.33 → llumo-0.2.34}/llumo/helpingFuntions.py +1 -1
- {llumo-0.2.33 → llumo-0.2.34/llumo.egg-info}/PKG-INFO +1 -1
- {llumo-0.2.33 → llumo-0.2.34}/LICENSE +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/MANIFEST.in +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/README.md +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo/__init__.py +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo/callback.py +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo/callbacks-0.py +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo/chains.py +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo/exceptions.py +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo/execution.py +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo/functionCalling.py +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo/google.py +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo/llumoLogger.py +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo/llumoSessionContext.py +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo/models.py +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo/openai.py +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo/sockets.py +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo.egg-info/SOURCES.txt +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo.egg-info/dependency_links.txt +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo.egg-info/requires.txt +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/llumo.egg-info/top_level.txt +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/setup.cfg +0 -0
- {llumo-0.2.33 → llumo-0.2.34}/setup.py +0 -0
|
@@ -22,20 +22,18 @@ from tqdm import tqdm
|
|
|
22
22
|
|
|
23
23
|
pd.set_option("future.no_silent_downcasting", True)
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
#
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
#
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
fetchMissingEvalUrl = "http://localhost:4747/api/get-missing-keys"
|
|
34
|
-
socketDataUrl = "http://localhost:4747/api/eval/get-awaited"
|
|
25
|
+
postUrl = "https://redskull.llumo.ai/api/process-playground"
|
|
26
|
+
|
|
27
|
+
# postUrl = "http://localhost:4747/api/process-playground"
|
|
28
|
+
fetchUrl = "https://redskull.llumo.ai/api/get-cells-data"
|
|
29
|
+
|
|
30
|
+
# fetchUrl = "http://localhost:4747/api/get-cells-data"
|
|
31
|
+
fetchMissingEvalUrl = "https://redskull.llumo.ai/api/get-missing-keys"
|
|
32
|
+
socketDataUrl = "https://redskull.llumo.ai/api/eval/get-awaited"
|
|
35
33
|
|
|
36
34
|
validateUrl = "https://app.llumo.ai/api/workspace-details"
|
|
37
|
-
|
|
38
|
-
socketUrl = "http://localhost:4747/"
|
|
35
|
+
socketUrl = "https://redskull.llumo.ai/"
|
|
36
|
+
# socketUrl = "http://localhost:4747/"
|
|
39
37
|
createEvalUrl = "https://backend-api.llumo.ai/api/v1/create-debug-log-for-sdk"
|
|
40
38
|
# createEvalUrl = "http://localhost:4545/api/v1/create-debug-log-for-sdk"
|
|
41
39
|
|
|
@@ -585,7 +585,7 @@ def checkDependency(selectedEval:list = [], columns:list = [],tocheck=True,_retu
|
|
|
585
585
|
|
|
586
586
|
def fetchData(workspaceID, playgroundID, missingList: list):
|
|
587
587
|
# Define the URL and prepare the payload
|
|
588
|
-
socket_data_url = "
|
|
588
|
+
socket_data_url = "https://redskull.llumo.ai/api/eval/get-awaited"
|
|
589
589
|
payload = {
|
|
590
590
|
"workspaceID": workspaceID,
|
|
591
591
|
"playgroundID": playgroundID,
|
|
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
|