litellm-proxy-extras 0.1.3__py3-none-any.whl → 0.1.4__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.

@@ -0,0 +1,18 @@
1
+ -- CreateTable
2
+ CREATE TABLE "LiteLLM_ManagedFileTable" (
3
+ "id" TEXT NOT NULL,
4
+ "unified_file_id" TEXT NOT NULL,
5
+ "file_object" JSONB NOT NULL,
6
+ "model_mappings" JSONB NOT NULL,
7
+ "created_at" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
8
+ "updated_at" TIMESTAMP(3) NOT NULL,
9
+
10
+ CONSTRAINT "LiteLLM_ManagedFileTable_pkey" PRIMARY KEY ("id")
11
+ );
12
+
13
+ -- CreateIndex
14
+ CREATE UNIQUE INDEX "LiteLLM_ManagedFileTable_unified_file_id_key" ON "LiteLLM_ManagedFileTable"("unified_file_id");
15
+
16
+ -- CreateIndex
17
+ CREATE INDEX "LiteLLM_ManagedFileTable_unified_file_id_idx" ON "LiteLLM_ManagedFileTable"("unified_file_id");
18
+
@@ -354,3 +354,14 @@ enum JobStatus {
354
354
  INACTIVE
355
355
  }
356
356
 
357
+ model LiteLLM_ManagedFileTable {
358
+ id String @id @default(uuid())
359
+ unified_file_id String @unique // The base64 encoded unified file ID
360
+ file_object Json // Stores the OpenAIFileObject
361
+ model_mappings Json // Stores the mapping of model_id -> provider_file_id
362
+ created_at DateTime @default(now())
363
+ updated_at DateTime @updatedAt
364
+
365
+ @@index([unified_file_id])
366
+ }
367
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: litellm-proxy-extras
3
- Version: 0.1.3
3
+ Version: 0.1.4
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.*
@@ -5,10 +5,11 @@ litellm_proxy_extras/migrations/20250326171002_add_daily_user_table/migration.sq
5
5
  litellm_proxy_extras/migrations/20250327180120_add_api_requests_to_daily_user_table/migration.sql,sha256=or5TaEgH4cHwR5kDvVjZvcAj1OwzTxjqwO-lxXe3FXk,110
6
6
  litellm_proxy_extras/migrations/20250329084805_new_cron_job_table/migration.sql,sha256=eZNDwrzKtWFXkTqOKb9JS4hzum1dI-VTXvMqzhryfxc,404
7
7
  litellm_proxy_extras/migrations/20250331215456_track_success_and_failed_requests_daily_agg_table/migration.sql,sha256=tyeLY6u8KFyw71osCBM-sdjhIgvHoFCK88cIx8dExNY,178
8
+ litellm_proxy_extras/migrations/20250411215431_add_managed_file_table/migration.sql,sha256=Yu2K37Q90LDhxsFo_64sH0PXdSQ3sHs45Lqzxv2t_20,625
8
9
  litellm_proxy_extras/migrations/migration_lock.toml,sha256=HbF6jQUaoTYRBzZ1LF4fi37ZK26o6AMRL7viSXBHwhA,24
9
- litellm_proxy_extras/schema.prisma,sha256=ohGQijs_BC0W-RHAr9UVT5sxhDkQfS58VN6K9aRu8rc,14162
10
+ litellm_proxy_extras/schema.prisma,sha256=jlH_P8bI3FAOdEqEHSNqT0cePe74M3p_EbXPRBvzKnw,14529
10
11
  litellm_proxy_extras/utils.py,sha256=G4FaWA01jwQ4482CWtFERKp0BosCwxsuqyv7bAIk7xg,3203
11
- litellm_proxy_extras-0.1.3.dist-info/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419
12
- litellm_proxy_extras-0.1.3.dist-info/METADATA,sha256=MpKnw9itqRCFPbMFFrA_0q2pIOcOaosKh-R5ZcWptR8,1267
13
- litellm_proxy_extras-0.1.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
14
- litellm_proxy_extras-0.1.3.dist-info/RECORD,,
12
+ litellm_proxy_extras-0.1.4.dist-info/LICENSE,sha256=sXDWv46INd01fgEWgdsCj01R4vsOqJIFj1bgH7ObgnM,1419
13
+ litellm_proxy_extras-0.1.4.dist-info/METADATA,sha256=ZHFn7yKeWsl5m5VRG6LjPjE0vW-EemPM67kvOLC_ky4,1267
14
+ litellm_proxy_extras-0.1.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
15
+ litellm_proxy_extras-0.1.4.dist-info/RECORD,,