langroid 0.59.0b2__py3-none-any.whl → 0.59.0b3__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.
- langroid/pydantic_v1/__init__.py +7 -0
- {langroid-0.59.0b2.dist-info → langroid-0.59.0b3.dist-info}/METADATA +1 -1
- {langroid-0.59.0b2.dist-info → langroid-0.59.0b3.dist-info}/RECORD +5 -5
- {langroid-0.59.0b2.dist-info → langroid-0.59.0b3.dist-info}/WHEEL +0 -0
- {langroid-0.59.0b2.dist-info → langroid-0.59.0b3.dist-info}/licenses/LICENSE +0 -0
langroid/pydantic_v1/__init__.py
CHANGED
@@ -40,6 +40,13 @@ logger.warning(
|
|
40
40
|
# This allows existing code to continue working if it's already v2-compatible
|
41
41
|
from pydantic import * # noqa: F403, F401
|
42
42
|
|
43
|
+
# BaseSettings has moved in v2, import it explicitly
|
44
|
+
try:
|
45
|
+
from pydantic_settings import BaseSettings # noqa: F401
|
46
|
+
except ImportError:
|
47
|
+
# Fallback for older pydantic versions
|
48
|
+
from pydantic import BaseSettings # noqa: F401
|
49
|
+
|
43
50
|
# Explicitly export all items for mypy
|
44
51
|
__all__ = [
|
45
52
|
"BaseModel",
|
@@ -135,7 +135,7 @@ langroid/prompts/__init__.py,sha256=RW11vK6jiLPuaUh4GpeFvstti73gkm8_rDMtrbo2YsU,
|
|
135
135
|
langroid/prompts/dialog.py,sha256=SpfiSyofSgy2pwD1YboHR_yHO3LEEMbv6j2sm874jKo,331
|
136
136
|
langroid/prompts/prompts_config.py,sha256=U4TxNld-ulVzWMK9joSVH852qfZtvF310eIG_mSGxmg,140
|
137
137
|
langroid/prompts/templates.py,sha256=VV84HVf_amOx6xdWQyIsN9i5dNfrbl8rsfFp6hyfOss,6371
|
138
|
-
langroid/pydantic_v1/__init__.py,sha256=
|
138
|
+
langroid/pydantic_v1/__init__.py,sha256=0XAvPYar-O0y4dF-mCSSAO4XQf2cDsmec165OZn9kMM,3180
|
139
139
|
langroid/pydantic_v1/__init__.py-e,sha256=rfgQ78ZCiaN5A9P2tvAKGuzspGJdDeGP8czONYsdz4U,1008
|
140
140
|
langroid/pydantic_v1/main.py,sha256=OPsAisRqkzWd4hvlvJqPH-goMWIyModK2AQJOTxThQg,362
|
141
141
|
langroid/pydantic_v1/main.py-e,sha256=Qh6qp5aqAIZxPprdHI3ys2kk3jHPQKBMIcr-zKmTomo,326
|
@@ -175,7 +175,7 @@ langroid/vector_store/pineconedb.py-e,sha256=LSC507hYKu6D3HZa3NnSQT-fmdGnUfRiz05
|
|
175
175
|
langroid/vector_store/postgres.py,sha256=TY_VshimwFZglYgKYm7Qn1F-dCSL8GsXRTgmh7VTe9c,16110
|
176
176
|
langroid/vector_store/qdrantdb.py,sha256=mqxMOrcLAQpl0opuL8vXhdIt6ppv2zYyAvddHZoEW0Y,19184
|
177
177
|
langroid/vector_store/weaviatedb.py,sha256=BS95bxVKNYfQc9VPb85a1HlcgnXfAkgMzjydnjCgRHc,11853
|
178
|
-
langroid-0.59.
|
179
|
-
langroid-0.59.
|
180
|
-
langroid-0.59.
|
181
|
-
langroid-0.59.
|
178
|
+
langroid-0.59.0b3.dist-info/METADATA,sha256=OE4G7EvotLp-7fy6SnENvMokMxZ0S6nO_yQGv5qFln0,66319
|
179
|
+
langroid-0.59.0b3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
180
|
+
langroid-0.59.0b3.dist-info/licenses/LICENSE,sha256=EgVbvA6VSYgUlvC3RvPKehSg7MFaxWDsFuzLOsPPfJg,1065
|
181
|
+
langroid-0.59.0b3.dist-info/RECORD,,
|
File without changes
|
File without changes
|