flowyml 1.7.0__py3-none-any.whl → 1.7.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.
- flowyml/storage/sql.py +24 -6
- flowyml/ui/frontend/dist/assets/{index-CX5RV2C9.js → index-BqDQvp63.js} +113 -113
- flowyml/ui/frontend/dist/index.html +1 -1
- flowyml/ui/frontend/src/app/assets/page.jsx +1 -1
- flowyml/ui/frontend/src/app/dashboard/page.jsx +1 -1
- flowyml/ui/frontend/src/app/experiments/[experimentId]/page.jsx +1 -1
- flowyml/ui/frontend/src/app/leaderboard/page.jsx +1 -1
- flowyml/ui/frontend/src/app/projects/[projectId]/_components/ProjectRunsList.jsx +3 -3
- flowyml/ui/frontend/src/app/runs/[runId]/page.jsx +1 -1
- {flowyml-1.7.0.dist-info → flowyml-1.7.1.dist-info}/METADATA +1 -1
- {flowyml-1.7.0.dist-info → flowyml-1.7.1.dist-info}/RECORD +14 -14
- {flowyml-1.7.0.dist-info → flowyml-1.7.1.dist-info}/WHEEL +0 -0
- {flowyml-1.7.0.dist-info → flowyml-1.7.1.dist-info}/entry_points.txt +0 -0
- {flowyml-1.7.0.dist-info → flowyml-1.7.1.dist-info}/licenses/LICENSE +0 -0
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<meta charset="UTF-8" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>FlowyML</title>
|
|
8
|
-
<script type="module" crossorigin src="/assets/index-
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-BqDQvp63.js"></script>
|
|
9
9
|
<link rel="stylesheet" crossorigin href="/assets/index-By4trVyv.css">
|
|
10
10
|
</head>
|
|
11
11
|
|
|
@@ -144,7 +144,7 @@ export function Assets() {
|
|
|
144
144
|
className="font-mono text-xs text-primary-600 hover:underline"
|
|
145
145
|
onClick={(e) => e.stopPropagation()}
|
|
146
146
|
>
|
|
147
|
-
{asset.run_id
|
|
147
|
+
{asset.run_id?.substring(0, 8) || 'N/A'}
|
|
148
148
|
</Link>
|
|
149
149
|
) : (
|
|
150
150
|
<span className="font-mono text-xs text-slate-400">-</span>
|
|
@@ -283,7 +283,7 @@ function RecentRunCard({ run, index }) {
|
|
|
283
283
|
{run.pipeline_name}
|
|
284
284
|
</h4>
|
|
285
285
|
<div className="flex items-center gap-2 text-xs text-slate-500 mt-0.5">
|
|
286
|
-
<span className="font-mono">{run.run_id
|
|
286
|
+
<span className="font-mono">{run.run_id?.substring(0, 8) || 'N/A'}</span>
|
|
287
287
|
{run.start_time && (
|
|
288
288
|
<>
|
|
289
289
|
<span>•</span>
|
|
@@ -141,7 +141,7 @@ export function ExperimentDetails() {
|
|
|
141
141
|
<td className="px-6 py-4 font-mono text-sm text-slate-700 font-medium">
|
|
142
142
|
<div className="flex items-center gap-2">
|
|
143
143
|
<div className="w-2 h-2 rounded-full bg-primary-400 opacity-0 group-hover:opacity-100 transition-opacity" />
|
|
144
|
-
{run.run_id
|
|
144
|
+
{run.run_id?.substring(0, 12) || 'N/A'}
|
|
145
145
|
</div>
|
|
146
146
|
</td>
|
|
147
147
|
<td className="px-6 py-4 text-sm text-slate-500">
|
|
@@ -117,7 +117,7 @@ export function Leaderboard() {
|
|
|
117
117
|
</div>
|
|
118
118
|
</td>
|
|
119
119
|
<td className="px-6 py-4 whitespace-nowrap text-sm text-slate-500 dark:text-slate-400 font-mono">
|
|
120
|
-
{model.run_id
|
|
120
|
+
{model.run_id?.substring(0, 8) || 'N/A'}
|
|
121
121
|
</td>
|
|
122
122
|
<td className="px-6 py-4 whitespace-nowrap text-sm text-slate-500 dark:text-slate-400">
|
|
123
123
|
{model.timestamp ? format(new Date(model.timestamp), 'MMM d, HH:mm') : '-'}
|
|
@@ -53,7 +53,7 @@ export function ProjectRunsList({ projectId }) {
|
|
|
53
53
|
</div>
|
|
54
54
|
<div>
|
|
55
55
|
<div className="font-medium text-slate-900 dark:text-white group-hover:text-blue-600 dark:group-hover:text-blue-400 transition-colors">
|
|
56
|
-
{run.name || run.run_id
|
|
56
|
+
{run.name || run.run_id?.substring(0, 8) || 'N/A'}
|
|
57
57
|
</div>
|
|
58
58
|
<div className="text-xs text-slate-500">{run.pipeline_name}</div>
|
|
59
59
|
</div>
|
|
@@ -101,12 +101,12 @@ export function ProjectRunsList({ projectId }) {
|
|
|
101
101
|
</span>
|
|
102
102
|
</div>
|
|
103
103
|
<span className="text-xs font-mono text-slate-400 bg-slate-50 dark:bg-slate-900 px-2 py-1 rounded">
|
|
104
|
-
{run.run_id
|
|
104
|
+
{run.run_id?.substring(0, 8) || 'N/A'}
|
|
105
105
|
</span>
|
|
106
106
|
</div>
|
|
107
107
|
|
|
108
108
|
<h3 className="font-semibold text-slate-900 dark:text-white mb-1 truncate group-hover:text-blue-600 dark:group-hover:text-blue-400 transition-colors">
|
|
109
|
-
{run.name || `Run ${run.run_id
|
|
109
|
+
{run.name || `Run ${run.run_id?.substring(0, 8) || 'N/A'}`}
|
|
110
110
|
</h3>
|
|
111
111
|
<p className="text-sm text-slate-500 dark:text-slate-400 mb-4 flex items-center gap-1">
|
|
112
112
|
<span className="opacity-75">Pipeline:</span>
|
|
@@ -164,7 +164,7 @@ export function RunDetails() {
|
|
|
164
164
|
</div>
|
|
165
165
|
<h2 className="text-2xl font-bold text-slate-900 dark:text-white flex items-center gap-3">
|
|
166
166
|
<div className={`w-3 h-3 rounded-full ${run.status === 'completed' ? 'bg-emerald-500' : run.status === 'failed' ? 'bg-rose-500' : 'bg-amber-500'}`} />
|
|
167
|
-
Run: <span className="font-mono text-slate-500">{run.run_id
|
|
167
|
+
Run: <span className="font-mono text-slate-500">{run.run_id?.substring(0, 8) || runId?.substring(0, 8) || 'N/A'}</span>
|
|
168
168
|
</h2>
|
|
169
169
|
<p className="text-slate-500 dark:text-slate-400 mt-1 flex items-center gap-2">
|
|
170
170
|
<Layers size={16} />
|
|
@@ -81,7 +81,7 @@ flowyml/storage/materializers/sklearn.py,sha256=JuszJrCQJW2CXJsO6b0ZMZyoKknM5XPM
|
|
|
81
81
|
flowyml/storage/materializers/tensorflow.py,sha256=YvKFVCTl75tnUysdhj6TzqZEzlpNMB-8XDnXh6-ewmI,5087
|
|
82
82
|
flowyml/storage/metadata.py,sha256=MfWdKCHOu3gShOMinhmSvOXzNS5fF89-GRqQlTo2mJw,1357
|
|
83
83
|
flowyml/storage/remote.py,sha256=0Iyi6BqESe52mONVvGZ9EidqoooSnEl-QyOYfO7GOqU,22209
|
|
84
|
-
flowyml/storage/sql.py,sha256=
|
|
84
|
+
flowyml/storage/sql.py,sha256=wOENTry98q4Arw6AStFpCktjbt_Y2xxQUd-wft29Ib0,37333
|
|
85
85
|
flowyml/tracking/__init__.py,sha256=H-ESGjwPN9fq1R4ptj0U1iVM5nXIYrMk9gPMRmY6Xh8,46
|
|
86
86
|
flowyml/tracking/experiment.py,sha256=Q9VDoCg7yRhgO2O6TLr4L2Jbyr3J_2JecR6lkqgJRE8,6004
|
|
87
87
|
flowyml/tracking/leaderboard.py,sha256=s6gXxvws4hIZLiLO5V_nO7iokpCq4czZGIO3MhW23do,5404
|
|
@@ -110,22 +110,22 @@ flowyml/ui/backend/routers/traces.py,sha256=xWxEuOe6TKDrZwWkZG5D3LuHEj_pmGnhJZ-5
|
|
|
110
110
|
flowyml/ui/backend/routers/websocket.py,sha256=PdGJKdG78yD5nVq7KIF6MwGyzlWHbbQDOJz2eFIb9X8,4908
|
|
111
111
|
flowyml/ui/frontend/Dockerfile,sha256=BJWOdU5mnk4e2H6rARiGOO6TF-YCRxN7mOIWPv0EIAM,314
|
|
112
112
|
flowyml/ui/frontend/README.md,sha256=M5il2PEdNVCSm1zo1rZAXqQ0nTj5frCNXmi5-d1ZKIM,7099
|
|
113
|
+
flowyml/ui/frontend/dist/assets/index-BqDQvp63.js,sha256=d6Vm-LE-WMtt-V9DDO22_onj9_d9hbBxieKYnmptF1w,1294459
|
|
113
114
|
flowyml/ui/frontend/dist/assets/index-By4trVyv.css,sha256=rDcWIcfFdSPd9bVKIspoO0S4fXu9QYE6j-MQtSlC6rI,76734
|
|
114
|
-
flowyml/ui/frontend/dist/
|
|
115
|
-
flowyml/ui/frontend/dist/index.html,sha256=vAbCc_3jA5yuMTq5vElxZ1oEjf2-qUpRTUfQ6g-F13E,375
|
|
115
|
+
flowyml/ui/frontend/dist/index.html,sha256=TzOZfjBY7wTgc9FysKtlqlxGg6BwwsQevUTy-zjRrzs,375
|
|
116
116
|
flowyml/ui/frontend/index.html,sha256=Y_Xm2LhORPIkzwz4VADHCmfDSuTkuT_gGVLRWpDOtis,279
|
|
117
117
|
flowyml/ui/frontend/nginx.conf,sha256=MdOpD7y2SJzpxwlHgjMVadTvlXTtZaRXfWO-WHmtuls,637
|
|
118
118
|
flowyml/ui/frontend/package-lock.json,sha256=qYEiw3iu7uXCjZcnog5tActXcv98B6shm23VW-xi_Qg,135309
|
|
119
119
|
flowyml/ui/frontend/package.json,sha256=aSTOw3HpD6rsum4cq6hpWMaBvIoWEdymwtowLks2cjY,803
|
|
120
120
|
flowyml/ui/frontend/postcss.config.js,sha256=YyT4lFBNiH_kipziy5I2ifedcoyTEY-7jAPL9chAzzM,92
|
|
121
121
|
flowyml/ui/frontend/src/App.jsx,sha256=FKM1y-i5uSLQK9QS5cvBVLb7m6VB6D1EXmbxDluyvEo,582
|
|
122
|
-
flowyml/ui/frontend/src/app/assets/page.jsx,sha256=
|
|
122
|
+
flowyml/ui/frontend/src/app/assets/page.jsx,sha256=3v0uuDx2qpjzqTeESSohgwqtcfAJIxWRBFmwAZQmEYI,20722
|
|
123
123
|
flowyml/ui/frontend/src/app/compare/page.jsx,sha256=ue0AURS2IPRdOjJ9pOcyhA8CvLqg8g13hQQXqfniBuw,12805
|
|
124
|
-
flowyml/ui/frontend/src/app/dashboard/page.jsx,sha256=
|
|
125
|
-
flowyml/ui/frontend/src/app/experiments/[experimentId]/page.jsx,sha256=
|
|
124
|
+
flowyml/ui/frontend/src/app/dashboard/page.jsx,sha256=x0esvQjgnJcNuZbYIss2iQdezJFDgJuRTR57SSoe5Ao,14369
|
|
125
|
+
flowyml/ui/frontend/src/app/experiments/[experimentId]/page.jsx,sha256=qerISNYw-3brqRpyUeVB5ltJBAUHS8coo3jhwdXK9HE,12122
|
|
126
126
|
flowyml/ui/frontend/src/app/experiments/compare/page.jsx,sha256=Ny-G7lMKjHJ1TzLEaziu3SSFEGDSjk9Pc0wDoJ0UvEs,18984
|
|
127
127
|
flowyml/ui/frontend/src/app/experiments/page.jsx,sha256=VzSTHUdKzPxdiRFld5Dar8fSJq0TDmnJe6XB723Sehs,8110
|
|
128
|
-
flowyml/ui/frontend/src/app/leaderboard/page.jsx,sha256=
|
|
128
|
+
flowyml/ui/frontend/src/app/leaderboard/page.jsx,sha256=fS8K_bFWXKJ2d1mFzLiWe1aOiwLr5LlG1YpU8IenNvE,7640
|
|
129
129
|
flowyml/ui/frontend/src/app/observability/page.jsx,sha256=RP3w7SH3HGvwW5SQnToZNxWlhYRRvfnXUQ80SFDf4CE,14494
|
|
130
130
|
flowyml/ui/frontend/src/app/pipelines/page.jsx,sha256=_kDIE4aoVJPg8wGSPMGG2HI7lNVse4PO9W03jjIo8Ek,6704
|
|
131
131
|
flowyml/ui/frontend/src/app/plugins/page.jsx,sha256=eQR_uW2Imt4HldDb8eVvu4rkQ6SLMv5FCbr-gc6bYIg,1577
|
|
@@ -136,11 +136,11 @@ flowyml/ui/frontend/src/app/projects/[projectId]/_components/ProjectHierarchy.js
|
|
|
136
136
|
flowyml/ui/frontend/src/app/projects/[projectId]/_components/ProjectMetricsPanel.jsx,sha256=S7WVB36zrLNG4Lz_tNzCSLl4eR1xwlr6yhfCz1VrVJU,11404
|
|
137
137
|
flowyml/ui/frontend/src/app/projects/[projectId]/_components/ProjectPipelinesList.jsx,sha256=3VLSBtbHcElXHcAk9zcSp069r8efPFNOlO28vRv2X2o,4635
|
|
138
138
|
flowyml/ui/frontend/src/app/projects/[projectId]/_components/ProjectRelations.jsx,sha256=pfkCk9NJyNnUtk4Ibqnd18_MlGZgmrnmmHV831wo9nw,8308
|
|
139
|
-
flowyml/ui/frontend/src/app/projects/[projectId]/_components/ProjectRunsList.jsx,sha256=
|
|
139
|
+
flowyml/ui/frontend/src/app/projects/[projectId]/_components/ProjectRunsList.jsx,sha256=7Mtg17o2AZJvdO5lMmojMN_eiIWqI3Ul83E7p_WnZfU,6136
|
|
140
140
|
flowyml/ui/frontend/src/app/projects/[projectId]/_components/ProjectTabs.jsx,sha256=oUN2TlazuhA8FWQmjVUA5IVSsnmWpsQBMpVzK-0jL-M,4768
|
|
141
141
|
flowyml/ui/frontend/src/app/projects/[projectId]/page.jsx,sha256=zcQ8xdkZ12zuTLBLyxSXX-_llUec_hWId5tzpAqevwI,16294
|
|
142
142
|
flowyml/ui/frontend/src/app/projects/page.jsx,sha256=MCZXKMijJc4nkFFpW7lwKuvOxal6j_17rXANvbPuy1I,14223
|
|
143
|
-
flowyml/ui/frontend/src/app/runs/[runId]/page.jsx,sha256=
|
|
143
|
+
flowyml/ui/frontend/src/app/runs/[runId]/page.jsx,sha256=xkclPCDZXxdsTmIrMaSe8gtH6h4wiKw6UuURHWVZ2jE,48466
|
|
144
144
|
flowyml/ui/frontend/src/app/runs/page.jsx,sha256=6laWDlYu3uDx6chrZS9eKV_W9k98JQQrpxjp78j10HI,8884
|
|
145
145
|
flowyml/ui/frontend/src/app/schedules/page.jsx,sha256=Ka_AmrgdVTA0AMbTdi5fc7U6XZESrFB9q2RRmCFGHBs,31347
|
|
146
146
|
flowyml/ui/frontend/src/app/settings/page.jsx,sha256=a4Z99Rov6F7B12IecimDHEzXN36oBBHv6nsubDNHGQk,16571
|
|
@@ -201,8 +201,8 @@ flowyml/utils/logging.py,sha256=PBJDFlGdp1mePS6A3g08dnGAB-v8jTlcNxEsYs9WSBo,1371
|
|
|
201
201
|
flowyml/utils/performance.py,sha256=-ne9v9ddEltiKRPk-AerM1R3Gwwd_oCRKtNyHARWd4k,8655
|
|
202
202
|
flowyml/utils/stack_config.py,sha256=STX1niArJzvu0YsqUQmrNJ0WTeMVW_setYNH36BlbVI,10826
|
|
203
203
|
flowyml/utils/validation.py,sha256=mClumVro0bl_XXxT1zWPlRI6M_iZa3z2SZ0QUdmTOqs,10199
|
|
204
|
-
flowyml-1.7.
|
|
205
|
-
flowyml-1.7.
|
|
206
|
-
flowyml-1.7.
|
|
207
|
-
flowyml-1.7.
|
|
208
|
-
flowyml-1.7.
|
|
204
|
+
flowyml-1.7.1.dist-info/METADATA,sha256=tsNI5DXRlVA4DTqmyop01l4i9o6aI3BdTP7sp-5oNO4,15536
|
|
205
|
+
flowyml-1.7.1.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
206
|
+
flowyml-1.7.1.dist-info/entry_points.txt,sha256=yuF-dOC4rbyJ2Aqi4CMRBxFhqIRoKO6Mhh6jfiQEVjI,48
|
|
207
|
+
flowyml-1.7.1.dist-info/licenses/LICENSE,sha256=DRBRWOEjKZQBvy1WZwxyvp2NmnC1whW9Ef7v0Oo-p_g,626
|
|
208
|
+
flowyml-1.7.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|