PraisonAI 1.0.3__cp312-cp312-manylinux_2_35_x86_64.whl → 1.0.5__cp312-cp312-manylinux_2_35_x86_64.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 PraisonAI might be problematic. Click here for more details.

praisonai/deploy.py CHANGED
@@ -56,7 +56,7 @@ class CloudDeployer:
56
56
  file.write("FROM python:3.11-slim\n")
57
57
  file.write("WORKDIR /app\n")
58
58
  file.write("COPY . .\n")
59
- file.write("RUN pip install flask praisonai==1.0.3 gunicorn markdown\n")
59
+ file.write("RUN pip install flask praisonai==1.0.5 gunicorn markdown\n")
60
60
  file.write("EXPOSE 8080\n")
61
61
  file.write('CMD ["gunicorn", "-b", "0.0.0.0:8080", "api:app"]\n')
62
62
 
praisonai/ui/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # Changes to DB
2
+
3
+ The following columns are renamed or modified between the first and second versions of the code:
4
+
5
+ | Table Name | Original Column Name | New Column Name |
6
+ |-------------|----------------------------|--------------------|
7
+ | `users` | `metadata` | `meta` |
8
+ | `users` | `created_at` | `createdAt` |
9
+ | `threads` | `metadata` | `meta` |
10
+ | `threads` | `created_at` | `createdAt` |
11
+ | `steps` | `metadata` | `meta` |
12
+ | `steps` | `start_time` | `startTime` |
13
+ | `steps` | `end_time` | `endTime` |
14
+ | `elements` | `metadata` | (Removed) |
15
+
16
+ Key changes:
17
+ 1. The `metadata` column in several tables is renamed to `meta`.
18
+ 2. Timestamps (`created_at`, `start_time`, and `end_time`) are renamed to PascalCase (`createdAt`, `startTime`, and `endTime`).
19
+ 3. Some columns are removed (e.g., `metadata` in `elements`).
20
+
21
+ These changes make the column names consistent and follow a specific naming convention.