llumo 0.2.1__py3-none-any.whl → 0.2.3__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.
llumo/client.py CHANGED
@@ -1,13 +1,10 @@
1
1
  import requests
2
- from docutils.nodes import subscript
3
2
 
4
3
  from .exceptions import LlumoAIError
5
4
  import time
6
5
  import re
7
6
  import json
8
7
  import uuid
9
- import threading
10
- from dotenv import load_dotenv
11
8
  import os
12
9
  import itertools
13
10
  import pandas as pd
@@ -19,12 +16,6 @@ from .sockets import LlumoSocketClient
19
16
  from .functionCalling import LlumoAgentExecutor
20
17
 
21
18
 
22
- # 👇 NEW: Explicitly load .env from the package folder
23
- envPath = os.path.join(os.path.dirname(__file__), ".env")
24
- load_dotenv(
25
- dotenv_path=envPath, override=False
26
- ) # Automatically looks for .env in current directory
27
-
28
19
  postUrl = "https://app.llumo.ai/api/eval/run-multiple-column"
29
20
  fetchUrl = "https://app.llumo.ai/api/eval/fetch-rows-data-by-column"
30
21
  validateUrl = "https://app.llumo.ai/api/workspace-details"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llumo
3
- Version: 0.2.1
3
+ Version: 0.2.3
4
4
  Summary: Python SDK for interacting with the Llumo ai API.
5
5
  Home-page: https://www.llumo.ai/
6
6
  Author: Llumo
@@ -1,13 +1,13 @@
1
1
  llumo/__init__.py,sha256=O04b4yW1BnOvcHzxWFddAKhtdBEhBNhLdb6xgnpHH_Q,205
2
- llumo/client.py,sha256=YBTWDVqJTBh0IKNDXzD8vvFgUoi8uuZDbA-Po72cfxI,35849
2
+ llumo/client.py,sha256=aCYeUrmEssSqydA_p3nokJ9MkspgitJ0HTmzL7SpkQw,35540
3
3
  llumo/exceptions.py,sha256=iCj7HhtO_ckC2EaVBdXbAudNpuMDsYmmMEV5lwynZ-E,1854
4
4
  llumo/execution.py,sha256=x88wQV8eL99wNN5YtjFaAMCIfN1PdfQVlAZQb4vzgQ0,1413
5
5
  llumo/functionCalling.py,sha256=QtuTtyoz5rnfNUrNT1kzegNPOrMFjrlgxZfwTqRMdiA,7190
6
6
  llumo/helpingFuntions.py,sha256=mDGOjeqJI1NOdoaT5FK3tlhWwhpZnk1nCnZOan0AFk0,8886
7
7
  llumo/models.py,sha256=YH-qAMnShmUpmKE2LQAzQdpRsaXkFSlOqMxHwU4zBUI,1560
8
8
  llumo/sockets.py,sha256=Qxxqtx3Hg07HLhA4QfcipK1ChiOYhHZBu02iA6MfYlQ,5579
9
- llumo-0.2.1.dist-info/licenses/LICENSE,sha256=tF9yAcfPV9xGT3ViWmC8hPvOo8BEk4ZICbUfcEo8Dlk,182
10
- llumo-0.2.1.dist-info/METADATA,sha256=E2hanseFfMf8jIbj54qVdZUgKu2JTOu_DV3nweGG_zs,426
11
- llumo-0.2.1.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
12
- llumo-0.2.1.dist-info/top_level.txt,sha256=d5zUTMI99llPtLRB8rtSrqELm_bOqX-bNC5IcwlDk88,6
13
- llumo-0.2.1.dist-info/RECORD,,
9
+ llumo-0.2.3.dist-info/licenses/LICENSE,sha256=tF9yAcfPV9xGT3ViWmC8hPvOo8BEk4ZICbUfcEo8Dlk,182
10
+ llumo-0.2.3.dist-info/METADATA,sha256=_Iv2gg-JKGBJvL8nEELMGJNxNUi8fBWqggI8Fas0gOY,426
11
+ llumo-0.2.3.dist-info/WHEEL,sha256=zaaOINJESkSfm_4HQVc5ssNzHCPXhJm0kEUakpsEHaU,91
12
+ llumo-0.2.3.dist-info/top_level.txt,sha256=d5zUTMI99llPtLRB8rtSrqELm_bOqX-bNC5IcwlDk88,6
13
+ llumo-0.2.3.dist-info/RECORD,,
File without changes