agenta 0.7.0__py3-none-any.whl → 0.7.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.

Potentially problematic release.


This version of agenta might be problematic. Click here for more details.

agenta/config.py CHANGED
@@ -1,4 +1,7 @@
1
- from pydantic.v1 import BaseSettings
1
+ try:
2
+ from pydantic.v1 import BaseSettings # type: ignore
3
+ except ImportError:
4
+ from pydantic import BaseSettings # type: ignore
2
5
 
3
6
  import os
4
7
  import toml
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: agenta
3
- Version: 0.7.0
3
+ Version: 0.7.1
4
4
  Summary: The SDK for agenta is an open-source LLMOps platform.
5
5
  Home-page: https://agenta.ai
6
6
  Keywords: LLMOps,LLM,evaluation,prompt engineering
@@ -17,11 +17,11 @@ Classifier: Programming Language :: Python :: 3.12
17
17
  Classifier: Topic :: Software Development :: Libraries
18
18
  Requires-Dist: click (>=8.1.3,<9.0.0)
19
19
  Requires-Dist: docker (>=6.1.1,<7.0.0)
20
- Requires-Dist: fastapi (>=0.95.1)
20
+ Requires-Dist: fastapi (>=0.96.1)
21
21
  Requires-Dist: importlib-metadata (>=6.7.0,<7.0.0)
22
22
  Requires-Dist: ipdb (>=0.13)
23
23
  Requires-Dist: posthog (>=3.1.0,<4.0.0)
24
- Requires-Dist: pydantic (>=2.0)
24
+ Requires-Dist: pydantic (==1.10.13)
25
25
  Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
26
26
  Requires-Dist: python-multipart (>=0.0.6,<0.0.7)
27
27
  Requires-Dist: questionary (>=1.10.0,<2.0.0)
@@ -64,7 +64,7 @@ agenta/client/backend/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvA
64
64
  agenta/client/backend/types/variant_action.py,sha256=38SadKvaBM9gNwoTD9AHxfdnWR3_syxRY9B1LEEvX5E,1031
65
65
  agenta/client/backend/types/variant_action_enum.py,sha256=wFQ74LoXocZkIMok5iTN7ztd7ikh51dZEeedjBm23A8,511
66
66
  agenta/client/exceptions.py,sha256=cxLjjKvZKlUgBxt4Vn9J_SsezJPPNHvrZxnoq-D6zmw,94
67
- agenta/config.py,sha256=shaAjVTGtJa9GimVs3Fq0VnZS-5SF7EvwelHRuEvcI8,633
67
+ agenta/config.py,sha256=Id-Ie1yf9QRP1YPhRYaYSOruRe6RBrsCXkG9rAa-ZtA,732
68
68
  agenta/config.toml,sha256=ptE0P49bwsu3Luyn7OLFmk2buPhj5D-MA-O_ErOGoLg,223
69
69
  agenta/docker/docker-assets/Dockerfile.cloud.template,sha256=CwJbCTezOYCGowA-Hh19f85YXgynT89CrWxjNxLJJfg,317
70
70
  agenta/docker/docker-assets/Dockerfile.template,sha256=KMQOmJ0F9zBY-1d5d4FZYIOnoTFGAJgqUwsAnIpDVak,285
@@ -97,7 +97,7 @@ agenta/templates/simple_prompt/app.py,sha256=kODgF6lhzsaJPdgL5b21bUki6jkvqjWZzWR
97
97
  agenta/templates/simple_prompt/env.example,sha256=g9AE5bYcGPpxawXMJ96gh8oenEPCHTabsiOnfQo3c5k,70
98
98
  agenta/templates/simple_prompt/requirements.txt,sha256=ywRglRy7pPkw8bljmMEJJ4aOOQKrt9FGKULZ-DGkoBU,23
99
99
  agenta/templates/simple_prompt/template.toml,sha256=DQBtRrF4GU8LBEXOZ-GGuINXMQDKGTEG5y37tnvIUIE,60
100
- agenta-0.7.0.dist-info/METADATA,sha256=zUlNGh5HjuW_7eXwzn5ntOtk8PF-w-vA52ffsPTC9FM,27291
101
- agenta-0.7.0.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
102
- agenta-0.7.0.dist-info/entry_points.txt,sha256=PDiu8_8AsL7ibU9v4iNoOKR1S7F2rdxjlEprjM9QOgo,46
103
- agenta-0.7.0.dist-info/RECORD,,
100
+ agenta-0.7.1.dist-info/METADATA,sha256=jelr1fcelHrzTCbbqEWY5KwOmQ1IdLc_s47g4cNNCC0,27295
101
+ agenta-0.7.1.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
102
+ agenta-0.7.1.dist-info/entry_points.txt,sha256=PDiu8_8AsL7ibU9v4iNoOKR1S7F2rdxjlEprjM9QOgo,46
103
+ agenta-0.7.1.dist-info/RECORD,,
File without changes