Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Agent workflow and tools options UI #2062

Open
wants to merge 24 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
f6de0d0
Add getAgentWorkflows api method
Sensational-Code Dec 12, 2024
42b9f6b
Add comment
Sensational-Code Dec 12, 2024
bef8161
Create initial PropertyBuilder component
Sensational-Code Dec 12, 2024
089dc47
Initial workflow configuration on agent form
Sensational-Code Dec 12, 2024
97f83b9
Install json-editor-vue npm package
Sensational-Code Dec 12, 2024
d892d42
Create initial JSONEditorDialog component
Sensational-Code Dec 12, 2024
6f16c50
Add more utility classes
Sensational-Code Dec 11, 2024
397eacd
Add more utility classes
Sensational-Code Dec 12, 2024
5d405f7
Add more utility classes
Sensational-Code Dec 12, 2024
0d2b382
Styling adjustments
Sensational-Code Dec 12, 2024
a6c7199
Clean up JSONEditorDialog
Sensational-Code Dec 12, 2024
d928d0a
Add ability to edit agent tools
Sensational-Code Dec 12, 2024
44b6933
Lint fix
Sensational-Code Dec 12, 2024
5547065
Styling adjustments
Sensational-Code Dec 12, 2024
4c6a3ab
Styling adjustments
Sensational-Code Dec 12, 2024
fdcebfc
Add utility class
Sensational-Code Dec 12, 2024
ce6eaee
Use utility class instead of inline style
Sensational-Code Dec 12, 2024
dde46a4
Move prompt under workflows
Sensational-Code Dec 12, 2024
4d5fcd5
Adjust styling
Sensational-Code Dec 12, 2024
1834d54
Add more utility classes
Sensational-Code Dec 12, 2024
8dcdcac
Create initial ConfigureToolDialog component
Sensational-Code Dec 12, 2024
ba96a1d
Clean up
Sensational-Code Dec 12, 2024
5bbddde
Render objects as strings in PropertyBuilder
Sensational-Code Dec 12, 2024
3620a70
Use ConfigureToolDialog
Sensational-Code Dec 12, 2024
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
36 changes: 36 additions & 0 deletions src/ui/ManagementPortal/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ body,
margin-left: 4px !important;
}

.ml-2 {
margin-left: 8px !important;
}

.mr-1 {
margin-right: 4px !important;
}
Expand All @@ -112,6 +116,10 @@ body,
margin-top: 16px !important;
}

.mt-6 {
margin-top: 24px !important;
}

.mb-1 {
margin-bottom: 4px !important;
}
Expand All @@ -120,10 +128,22 @@ body,
margin-bottom: 8px !important;
}

.mb-3 {
margin-bottom: 12px !important;
}

.mb-4 {
margin-bottom: 16px !important;
}

.mb-5 {
margin-bottom: 20px !important;
}

.mb-6 {
margin-bottom: 24px !important;
}

.w-100 {
width: 100%;
}
Expand All @@ -136,6 +156,14 @@ body,
display: flex;
}

.flex-1 {
flex: 1;
}

.gap-4 {
gap: 16px;
}

.flex-column {
flex-direction: column;
}
Expand All @@ -152,10 +180,18 @@ body,
justify-content: end;
}

.justify-content-between {
justify-content: space-between;
}

.justify-self-end {
justify-self: end;
}

.font-weight-bold {
font-weight: bold;
}

.cursor-pointer {
cursor: pointer;
}
Expand Down
Loading
Loading