Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
8f0d3bd
added sds banner
Khauneesh-AI Jun 23, 2025
cc15f65
Long job support with partial output | health check for OpenAI and Ge…
Khauneesh-AI Jun 27, 2025
d2fa5f4
DSE-45299: Fetching Templates from SDS API for SDS UI
Jun 18, 2025
7b25307
Merge pull request #86 from cloudera/dev-long-run-job
Khauneesh-AI Jul 7, 2025
246be13
changes to track completed rows in a complete or partial run
Khauneesh-AI Jul 7, 2025
5c435bd
alembic upgrade made simpler and robust for new column updates
Khauneesh-AI Jul 7, 2025
3f73c01
Merge pull request #87 from cloudera/dev-long-run-job
Khauneesh-AI Jul 7, 2025
d530647
upgrade database process separated as a subprocess within same endpoi…
Khauneesh-AI Jul 7, 2025
b866ebb
Merge pull request #89 from cloudera/dev-long-run-job
Khauneesh-AI Jul 7, 2025
2918730
added ticketing dataset temmplate i.e. ala hello world template for s…
Khauneesh-AI Jul 7, 2025
a4a16b9
DSE-45878: Add Mute Checkbox for the Welcome Page
Jun 30, 2025
29f244f
Merge pull request #90 from cloudera/DSE-45299
vkeivan Jul 8, 2025
5a88a56
DSE-45114: Add Data Augmentation Card
Jul 9, 2025
5343104
Merge pull request #94 from cloudera/DSE-45114-final
vkeivan Jul 10, 2025
79d4f45
DSE-45483: Fix for Datasets Table REndering
Jul 10, 2025
18c1680
Merge pull request #95 from cloudera/DSE-45483
vkeivan Jul 10, 2025
176b155
Revert "DSE-45483: Fix for Datasets Table Rendering"
Khauneesh-AI Jul 10, 2025
e042804
Merge pull request #96 from cloudera/revert-95-DSE-45483
Khauneesh-AI Jul 10, 2025
44d64e6
Revert "DSE-45114: Add Data Augmentation Card"
Khauneesh-AI Jul 10, 2025
b3807ea
Merge pull request #97 from cloudera/revert-94-DSE-45114-final
Khauneesh-AI Jul 10, 2025
1534f9d
DSE-45114: Add Data Augmentation Card
Jul 9, 2025
3d81613
DSE-45483: Fix for Datasets Table REndering
Jul 10, 2025
27801cc
Set Workflow Type Custom for Data Augmentation
Jul 10, 2025
5370494
Update app/client/src/types.ts
Khauneesh-AI Jul 11, 2025
011ee82
Merge pull request #98 from cloudera/data-augmentation-final
Khauneesh-AI Jul 11, 2025
f5ea3ea
description and tags for use cases | performance upgrade for database…
Khauneesh-AI Jul 11, 2025
949a5dd
tags and description changed for templates
Khauneesh-AI Jul 17, 2025
c510266
Add new SDS home page (DatasetsPage) with Ant Design table, search, a…
Jul 17, 2025
15c8c65
Merge pull request #99 from cloudera/feature/new-sds-home-page
vkeivan Jul 23, 2025
98241b8
modified build script to directly install from pip rather than astral.sh
Khauneesh-AI Jul 24, 2025
c0c9242
New Descriptions for Home Page Cards
Jul 24, 2025
f688818
Merge pull request #101 from cloudera/minor-title-changes
vkeivan Jul 24, 2025
1a1a92a
cetificates issues handled for PVC | correct error propagation for f…
Khauneesh-AI Jul 25, 2025
6462dfb
fix: minor update to DataGenerator Configure component for consistenc…
Jul 25, 2025
033d9ba
Merge pull request #103 from cloudera/mode-text-changes
vkeivan Jul 25, 2025
e0375a8
adding completed rows on the final homepage datasets tab
Khauneesh-AI Jul 26, 2025
7331eef
evaluate default examples bug resolved
Khauneesh-AI Jul 28, 2025
3e1568d
Fix Regenerate Issues
Jul 28, 2025
17d811b
Merge pull request #104 from cloudera/regenerate-issues
vkeivan Jul 29, 2025
7feb574
Regenerate Issues using PDF Files
Jul 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,5 @@ sample_200x100.csv
Raw_Web_Visit_sample.csv
Raw_Web_Visit_Sample.csv
Raw_Web_Visit_Sample.csv
app/test_models.py
credit_card_example.json
30 changes: 30 additions & 0 deletions alembic/versions/2b4e8d9f6c3a_add_completed_rows.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
"""add_completed_rows

Revision ID: 2b4e8d9f6c3a
Revises: 1a8fdc23eb6f
Create Date: 2025-01-18 10:30:00.000000

"""
from typing import Sequence, Union

from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision: str = '2b4e8d9f6c3a'
down_revision: Union[str, None] = '1a8fdc23eb6f'
branch_labels: Union[str, Sequence[str], None] = None
depends_on: Union[str, Sequence[str], None] = None


def upgrade() -> None:
# Add completed_rows column to generation_metadata table
with op.batch_alter_table('generation_metadata', schema=None) as batch_op:
batch_op.add_column(sa.Column('completed_rows', sa.Integer(), nullable=True))


def downgrade() -> None:
# Remove completed_rows column from generation_metadata table
with op.batch_alter_table('generation_metadata', schema=None) as batch_op:
batch_op.drop_column('completed_rows')
21 changes: 20 additions & 1 deletion app/client/src/Container.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,25 @@ const pages: MenuItem[] = [
<Link to={`${Pages.GENERATOR}`}>{LABELS[Pages.GENERATOR]}</Link>
),
},
{
key: Pages.DATASETS,
label: (
<Link to={`${Pages.DATASETS}`}>{LABELS[Pages.DATASETS]}</Link>
),
},
{
key: Pages.EVALUATIONS,
label: (
<Link to={`${Pages.EVALUATIONS}`}>{LABELS[Pages.EVALUATIONS]}</Link>
),
},
{
key: Pages.EXPORTS,
label: (
<Link to={`${Pages.EXPORTS}`}>{LABELS[Pages.EXPORTS]}</Link>
),
},

// {
// key: Pages.TELEMETRY,
// label: (
Expand Down Expand Up @@ -107,7 +126,7 @@ const pages: MenuItem[] = [
</div>
<Flex justify='center' align='center' vertical style={{ marginTop: '12px' }}>
<StyledSection>
{`SDS-1.0.2`}
{`SDS-1.0.3`}
</StyledSection>
</Flex>
</Flex>
Expand Down
1 change: 1 addition & 0 deletions app/client/src/api/Datasets/response.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export type DatasetResponse = {
job_name: string;
job_status: string;
inference_type: string;
completed_rows: number; // Add this line
};

export type ModelParameters = {
Expand Down
3 changes: 3 additions & 0 deletions app/client/src/assets/ic-arrow-right-light.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions app/client/src/assets/ic-brand-alternative-data.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions app/client/src/assets/ic-brand-inventory-ordering.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions app/client/src/assets/ic-brand-iot.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading