vedana-core 0.6.1__py3-none-any.whl → 0.6.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.
vedana_core/utils.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
def cast_dtype(value, value_name: str, dtype: str | None):
|
|
2
2
|
"""
|
|
3
|
-
|
|
3
|
+
convert strings into dtypes provided in data model
|
|
4
4
|
"""
|
|
5
5
|
|
|
6
6
|
try:
|
|
@@ -18,7 +18,7 @@ def cast_dtype(value, value_name: str, dtype: str | None):
|
|
|
18
18
|
value = int(value)
|
|
19
19
|
|
|
20
20
|
elif dtype == "bool":
|
|
21
|
-
return str(value).strip().lower() in ["1", "true"
|
|
21
|
+
return str(value).strip().lower() in ["1", "true"]
|
|
22
22
|
elif dtype == "str":
|
|
23
23
|
return str(value)
|
|
24
24
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vedana-core
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.3
|
|
4
4
|
Summary: Semantic Graph RAG App
|
|
5
5
|
Author-email: Andrey Tatarinov <a@tatarinov.co>, Timur Sheydaev <tsheyd@epoch8.co>
|
|
6
6
|
Requires-Python: >=3.12
|
|
@@ -11,10 +11,8 @@ Requires-Dist: alembic>=1.13.0
|
|
|
11
11
|
Requires-Dist: async-lru>=2.0.5
|
|
12
12
|
Requires-Dist: asyncpg>=0.29.0
|
|
13
13
|
Requires-Dist: grist-api>=0.1.1
|
|
14
|
-
Requires-Dist: jims-
|
|
15
|
-
Requires-Dist: jims-core
|
|
14
|
+
Requires-Dist: jims-core>=0.4.2
|
|
16
15
|
Requires-Dist: jims-telegram
|
|
17
|
-
Requires-Dist: jims-tui
|
|
18
16
|
Requires-Dist: litellm>=1.79.0
|
|
19
17
|
Requires-Dist: neo4j>=5.28.1
|
|
20
18
|
Requires-Dist: openai>=2.8.0
|
|
@@ -10,8 +10,8 @@ vedana_core/rag_agent.py,sha256=kYYgVe7tLghLaaeaLUPJU8hS-LEZ1knx7As3oH_Wfks,8321
|
|
|
10
10
|
vedana_core/rag_pipeline.py,sha256=eOnWYph-2qZufw4LzS6SeKWf69I7IKX_ynTd5H4noNY,13750
|
|
11
11
|
vedana_core/settings.py,sha256=X78c46zppz6kuFIJx4xGUoaerlomPYz8XrYqeIOMy8c,892
|
|
12
12
|
vedana_core/start_pipeline.py,sha256=SJWBCbod88z1Qv8st3bPAsqgGK7cRSwxOJcoWGRXvLM,597
|
|
13
|
-
vedana_core/utils.py,sha256=
|
|
13
|
+
vedana_core/utils.py,sha256=jw2Eg312bml5NffPfBT_3CAwPxxBUiC-7688B9BO708,1069
|
|
14
14
|
vedana_core/vts.py,sha256=lWZdlelEe7x6nQRGP0_vcpObPQKQBMmHNcuxMY1ziiw,6985
|
|
15
|
-
vedana_core-0.6.
|
|
16
|
-
vedana_core-0.6.
|
|
17
|
-
vedana_core-0.6.
|
|
15
|
+
vedana_core-0.6.3.dist-info/METADATA,sha256=L_5d-kD1n_6eV3MKkr7C2crQyC38YMc00mU7W6F9nmE,846
|
|
16
|
+
vedana_core-0.6.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
17
|
+
vedana_core-0.6.3.dist-info/RECORD,,
|
|
File without changes
|