litellm-proxy-extras 0.1.3__tar.gz → 0.1.4__tar.gz
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-0.1.3 → litellm_proxy_extras-0.1.4}/PKG-INFO +1 -1
- litellm_proxy_extras-0.1.4/litellm_proxy_extras/migrations/20250411215431_add_managed_file_table/migration.sql +18 -0
- {litellm_proxy_extras-0.1.3 → litellm_proxy_extras-0.1.4}/litellm_proxy_extras/schema.prisma +11 -0
- {litellm_proxy_extras-0.1.3 → litellm_proxy_extras-0.1.4}/pyproject.toml +2 -2
- {litellm_proxy_extras-0.1.3 → litellm_proxy_extras-0.1.4}/LICENSE +0 -0
- {litellm_proxy_extras-0.1.3 → litellm_proxy_extras-0.1.4}/README.md +0 -0
- {litellm_proxy_extras-0.1.3 → litellm_proxy_extras-0.1.4}/litellm_proxy_extras/__init__.py +0 -0
- {litellm_proxy_extras-0.1.3 → litellm_proxy_extras-0.1.4}/litellm_proxy_extras/_logging.py +0 -0
- {litellm_proxy_extras-0.1.3 → litellm_proxy_extras-0.1.4}/litellm_proxy_extras/migrations/20250326162113_baseline/migration.sql +0 -0
- {litellm_proxy_extras-0.1.3 → litellm_proxy_extras-0.1.4}/litellm_proxy_extras/migrations/20250326171002_add_daily_user_table/migration.sql +0 -0
- {litellm_proxy_extras-0.1.3 → litellm_proxy_extras-0.1.4}/litellm_proxy_extras/migrations/20250327180120_add_api_requests_to_daily_user_table/migration.sql +0 -0
- {litellm_proxy_extras-0.1.3 → litellm_proxy_extras-0.1.4}/litellm_proxy_extras/migrations/20250329084805_new_cron_job_table/migration.sql +0 -0
- {litellm_proxy_extras-0.1.3 → litellm_proxy_extras-0.1.4}/litellm_proxy_extras/migrations/20250331215456_track_success_and_failed_requests_daily_agg_table/migration.sql +0 -0
- {litellm_proxy_extras-0.1.3 → litellm_proxy_extras-0.1.4}/litellm_proxy_extras/migrations/migration_lock.toml +0 -0
- {litellm_proxy_extras-0.1.3 → litellm_proxy_extras-0.1.4}/litellm_proxy_extras/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: litellm-proxy-extras
|
|
3
|
-
Version: 0.1.
|
|
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.*
|
|
@@ -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
|
+
|
{litellm_proxy_extras-0.1.3 → litellm_proxy_extras-0.1.4}/litellm_proxy_extras/schema.prisma
RENAMED
|
@@ -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
|
[tool.poetry]
|
|
2
2
|
name = "litellm-proxy-extras"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.4"
|
|
4
4
|
description = "Additional files for the LiteLLM Proxy. Reduces the size of the main litellm package."
|
|
5
5
|
authors = ["BerriAI"]
|
|
6
6
|
readme = "README.md"
|
|
@@ -22,7 +22,7 @@ requires = ["poetry-core"]
|
|
|
22
22
|
build-backend = "poetry.core.masonry.api"
|
|
23
23
|
|
|
24
24
|
[tool.commitizen]
|
|
25
|
-
version = "0.1.
|
|
25
|
+
version = "0.1.4"
|
|
26
26
|
version_files = [
|
|
27
27
|
"pyproject.toml:version",
|
|
28
28
|
"../requirements.txt:litellm-proxy-extras==",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|