csvai 0.1.0__py3-none-any.whl → 0.1.1__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.
csvai/settings.py CHANGED
@@ -22,7 +22,7 @@ class Settings:
22
22
  backoff_factor: float = 1.7
23
23
 
24
24
  def __post_init__(self) -> None:
25
- load_dotenv(find_dotenv())
25
+ load_dotenv(find_dotenv(usecwd=True), override=True)
26
26
  self.openai_api_key = os.getenv("OPENAI_API_KEY", self.openai_api_key)
27
27
  self.default_model = os.getenv("DEFAULT_MODEL", self.default_model)
28
28
  self.max_output_tokens = int(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: csvai
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Enrich CSV or Excel rows using OpenAI models.
5
5
  Author: Zyxware Technologies, Vimal Joseph
6
6
  License: GNU GENERAL PUBLIC LICENSE
@@ -4,11 +4,11 @@ csvai/cli.py,sha256=8dnl09ar1NeoqImr5TCf5x-OjKhlXSzNl1JYhrY1QXs,1676
4
4
  csvai/io_utils.py,sha256=zVQtJlDp3C-qCrMmgV721TrFAPaMMJfBvMMXYkdMAsE,4499
5
5
  csvai/launch.py,sha256=vScv6J1wyp-VSU1z5ghauINODgQGPt-9sd0uPTwkHKU,356
6
6
  csvai/processor.py,sha256=hervfj8QoXR8lgzZYJZa3IO-byIXHIgqhITuFtLJ9PQ,14492
7
- csvai/settings.py,sha256=ZNLd19tr9agO2M5TM_5wkVOKHGMrufe7YVqjkDQtzdU,1793
7
+ csvai/settings.py,sha256=-Jf7z90xugPCkK39NzHbVrMKQFmCpqQJ2XXSccm8gWY,1819
8
8
  csvai/ui.py,sha256=ANW5Q_ozL5RqBBwp3eYdasIFM5gi10ePhpaxdzL4n5s,8444
9
- csvai-0.1.0.dist-info/licenses/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
10
- csvai-0.1.0.dist-info/METADATA,sha256=Qv2PcdQpf5yxD90YK08yR0P1N8ibQ3iZdJwQ9lpP8Es,34299
11
- csvai-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
- csvai-0.1.0.dist-info/entry_points.txt,sha256=FPtxQaCmYAivxE5mCR7xZ4qRHql0WkR5zFGsa6uzNtU,70
13
- csvai-0.1.0.dist-info/top_level.txt,sha256=5zoOsPtoSVx3vJiHHobEuEe2oFoEBpX3w6FIvLLU0xg,6
14
- csvai-0.1.0.dist-info/RECORD,,
9
+ csvai-0.1.1.dist-info/licenses/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
10
+ csvai-0.1.1.dist-info/METADATA,sha256=kDQL5p3vboMIpRZJ96JCsNzdLp-Hlf-ef9p5xXmT5e8,34299
11
+ csvai-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
12
+ csvai-0.1.1.dist-info/entry_points.txt,sha256=FPtxQaCmYAivxE5mCR7xZ4qRHql0WkR5zFGsa6uzNtU,70
13
+ csvai-0.1.1.dist-info/top_level.txt,sha256=5zoOsPtoSVx3vJiHHobEuEe2oFoEBpX3w6FIvLLU0xg,6
14
+ csvai-0.1.1.dist-info/RECORD,,
File without changes