litellm-proxy-extras 0.4.0__py3-none-any.whl → 0.4.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 litellm-proxy-extras might be problematic. Click here for more details.
- litellm_proxy_extras/schema.prisma +11 -0
- litellm_proxy_extras/utils.py +1 -0
- {litellm_proxy_extras-0.4.0.dist-info → litellm_proxy_extras-0.4.1.dist-info}/METADATA +1 -1
- {litellm_proxy_extras-0.4.0.dist-info → litellm_proxy_extras-0.4.1.dist-info}/RECORD +6 -6
- {litellm_proxy_extras-0.4.0.dist-info → litellm_proxy_extras-0.4.1.dist-info}/LICENSE +0 -0
- {litellm_proxy_extras-0.4.0.dist-info → litellm_proxy_extras-0.4.1.dist-info}/WHEEL +0 -0
|
@@ -590,6 +590,17 @@ model LiteLLM_SSOConfig {
|
|
|
590
590
|
updated_at DateTime @updatedAt
|
|
591
591
|
}
|
|
592
592
|
|
|
593
|
+
model LiteLLM_ManagedVectorStoreIndexTable {
|
|
594
|
+
id String @id @default(uuid())
|
|
595
|
+
index_name String @unique
|
|
596
|
+
litellm_params Json
|
|
597
|
+
index_info Json?
|
|
598
|
+
created_at DateTime @default(now())
|
|
599
|
+
created_by String?
|
|
600
|
+
updated_at DateTime @updatedAt
|
|
601
|
+
updated_by String?
|
|
602
|
+
}
|
|
603
|
+
|
|
593
604
|
// Cache configuration table
|
|
594
605
|
model LiteLLM_CacheConfig {
|
|
595
606
|
id String @id @default("cache_config")
|
litellm_proxy_extras/utils.py
CHANGED
|
@@ -189,6 +189,7 @@ class ProxyExtrasDBManager:
|
|
|
189
189
|
# 2. Run prisma db execute to apply the migration
|
|
190
190
|
try:
|
|
191
191
|
logger.info("Running prisma db execute to apply the migration diff...")
|
|
192
|
+
print(f"schema_path: {schema_path}")
|
|
192
193
|
result = subprocess.run(
|
|
193
194
|
[
|
|
194
195
|
"prisma",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: litellm-proxy-extras
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.1
|
|
4
4
|
Summary: Additional files for the LiteLLM Proxy. Reduces the size of the main litellm package.
|
|
5
5
|
Author: BerriAI
|
|
6
6
|
Requires-Python: >=3.8, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*
|
|
@@ -44,9 +44,9 @@ litellm_proxy_extras/migrations/20251023141814_add_search_tool_table/migration.s
|
|
|
44
44
|
litellm_proxy_extras/migrations/20251031181430_add_cache_config_table/migration.sql,sha256=Aby9tvl07fvWgqwGpkBh_m0HbAwrCAPWOPIEjND6iGg,608
|
|
45
45
|
litellm_proxy_extras/migrations/20251101131415_add_managed_vector_store_index_table/migration.sql,sha256=Eo99s-lpTp4UnoCl2NeGRmstxEgwj_u-s2JVwGYSMEc,568
|
|
46
46
|
litellm_proxy_extras/migrations/migration_lock.toml,sha256=HbF6jQUaoTYRBzZ1LF4fi37ZK26o6AMRL7viSXBHwhA,24
|
|
47
|
-
litellm_proxy_extras/schema.prisma,sha256=
|
|
48
|
-
litellm_proxy_extras/utils.py,sha256=
|
|
49
|
-
litellm_proxy_extras-0.4.
|
|
50
|
-
litellm_proxy_extras-0.4.
|
|
51
|
-
litellm_proxy_extras-0.4.
|
|
52
|
-
litellm_proxy_extras-0.4.
|
|
47
|
+
litellm_proxy_extras/schema.prisma,sha256=xMOflwU-npTN6NdRYanF98EYly-S5ho8BJ8dyK0DIbw,23161
|
|
48
|
+
litellm_proxy_extras/utils.py,sha256=8hbLzxZ9xlg1fRC8n4Q9NroGH5CGCeuiAY3r0Qv-5bs,15728
|
|
49
|
+
litellm_proxy_extras-0.4.1.dist-info/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419
|
|
50
|
+
litellm_proxy_extras-0.4.1.dist-info/METADATA,sha256=BSJK-LY2GbjqURUi6uv2PrzC77XUwolbC5YU_I5SSdM,1266
|
|
51
|
+
litellm_proxy_extras-0.4.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
52
|
+
litellm_proxy_extras-0.4.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|