Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
5a57cf9
moving code from other repo
os1rix May 25, 2025
82f0176
include OpenAPI scripts
os1rix May 25, 2025
c883d28
add tailwind config, change vite config
os1rix May 25, 2025
7aa586c
Refactor workflow handling in UI components and add WorkflowCategoryB…
os1rix May 25, 2025
398b23e
Update Workflow components and enhance workflow step handling
os1rix May 25, 2025
8c5f05c
Refactor LogViewer and Workflow components for improved functionality
os1rix May 25, 2025
8acb1d3
Update WorkflowCanvas and WorkflowStepNode to adjust step numbering a…
os1rix May 25, 2025
a497ebb
Add drag-and-drop functionality for workflow steps and integrate dnd-kit
os1rix May 25, 2025
6089589
Enhance WorkflowSidebar and AppContext for improved workflow management
os1rix May 26, 2025
780a4eb
Refactor README and CLI for improved server startup and Windows compa…
os1rix May 26, 2025
d7b6c7e
Refactor dialog management and add UnsavedChangesDialog for improved …
os1rix May 27, 2025
15d3942
Implement EditRecordingDialog and RecordingInProgressDialog for enhan…
os1rix May 27, 2025
e6d00cb
Enhance EditRecordingDialog and RunWorkflowDialog for improved user e…
os1rix May 27, 2025
f0b9c97
Enhance EditRecordingDialog and RunAsToolDialog with improved user fe…
os1rix May 27, 2025
1e48adf
Refactor EditRecordingDialog to enhance user interface and statistics…
os1rix May 27, 2025
9e082a6
Update uv.lock to include new package dependencies and versioning
os1rix May 27, 2025
3996415
Enhance workflow recording features and UI components
os1rix May 28, 2025
e904f1b
Enhance LogViewer and RunWorkflowDialog for improved user experience
os1rix May 28, 2025
8f6241c
Merge branch 'main' into feature/new-ui
os1rix May 28, 2025
3c86011
ruff lint
os1rix May 28, 2025
f764e5a
downgrade to v8 to use .eslintrc.cjs
os1rix May 28, 2025
7db4c60
Refactor workflow service and components for improved functionality
os1rix May 28, 2025
5995de4
Enhance WorkflowEditor and AppContext for improved workflow saving an…
os1rix May 28, 2025
cad74a7
Refactor LogViewer and Index components for improved UI and functiona…
os1rix May 28, 2025
672c544
Implement step deletion functionality in workflow management
os1rix May 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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ playwright install chromium
cp .env.example .env # add your OPENAI_API_KEY to the .env file
```


## Run workflow as tool

```bash
Expand All @@ -48,7 +47,7 @@ python cli.py run-as-tool examples/example.workflow.json --prompt "fill the form
## Run workflow with predefined variables

```bash
python cli.py run-workflow examples/example.workflow.json
python cli.py run-workflow examples/example.workflow.json
```

## Record your own workflow
Expand Down Expand Up @@ -88,6 +87,7 @@ python cli.py launch-gui
```

This command will:

- Start the backend server (FastAPI)
- Start the frontend development server
- Automatically open http://localhost:5173 in your browser
Expand All @@ -103,7 +103,7 @@ Alternatively, you can start the servers individually:

```bash
cd workflows
uvicorn backend.api:app --reload
uvicorn backend.api:app
```

#### Start the frontend development server
Expand Down
20 changes: 20 additions & 0 deletions ui/components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/index.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
}
}
Loading