mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-10 23:05:17 -05:00
# 🌎 Overview AutoGPT Store Version 2 expands on the Pre-Store by enhancing agent discovery, providing richer content presentation, and introducing new user engagement features. The focus is on creating a visually appealing and interactive marketplace that allows users to explore and evaluate agents through images, videos, and detailed descriptions. ### Vision To create a visually compelling and interactive open-source marketplace for autonomous AI agents, where users can easily discover, evaluate, and interact with agents through media-rich listings, ratings, and version history. ### Objectives 📊 Incorporate visuals (icons, images, videos) into agent listings. ⭐ Introduce a rating system and agent run count. 🔄 Provide version history and update logs from creators. 🔍 Improve user experience with advanced search and filtering features. ### Changes 🏗️ <!-- Concisely describe all of the changes made in this pull request: --> ### Checklist 📋 #### For code changes: - [ ] I have clearly listed my changes in the PR description - [ ] I have made a test plan - [ ] I have tested my changes according to the test plan: <!-- Put your test plan here: --> - [ ] ... <details> <summary>Example test plan</summary> - [ ] Create from scratch and execute an agent with at least 3 blocks - [ ] Import an agent from file upload, and confirm it executes correctly - [ ] Upload agent to marketplace - [ ] Import an agent from marketplace and confirm it executes correctly - [ ] Edit an agent from monitor, and confirm it executes correctly </details> #### For configuration changes: - [ ] `.env.example` is updated or already compatible with my changes - [ ] `docker-compose.yml` is updated or already compatible with my changes - [ ] I have included a list of my configuration changes in the PR description (under **Changes**) <details> <summary>Examples of configuration changes</summary> - Changing ports - Adding new services that need to communicate with each other - Secrets or environment variable changes - New or infrastructure changes such as databases </details> --------- Co-authored-by: Bently <tomnoon9@gmail.com> Co-authored-by: Aarushi <aarushik93@gmail.com>
104 lines
1.6 KiB
CSS
104 lines
1.6 KiB
CSS
/* flow.css or index.css */
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
|
|
"Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
|
|
"Helvetica Neue", sans-serif;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
|
monospace;
|
|
}
|
|
|
|
.modal {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
right: auto;
|
|
bottom: auto;
|
|
margin-right: -50%;
|
|
transform: translate(-50%, -50%);
|
|
background: #ffffff;
|
|
padding: 20px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
color: #000000;
|
|
}
|
|
|
|
.overlay {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: rgba(0, 0, 0, 0.75);
|
|
}
|
|
|
|
.modal h2 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.modal button {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.modal form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.modal form div {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.sidebar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: -600px;
|
|
width: 350px;
|
|
height: calc(100vh - 68px); /* Full height minus top offset */
|
|
background-color: #ffffff;
|
|
color: #000000;
|
|
padding: 20px;
|
|
transition: left 0.3s ease;
|
|
z-index: 1000;
|
|
overflow-y: auto;
|
|
margin-top: 68px; /* Margin to push content below the top fixed area */
|
|
}
|
|
|
|
.sidebar.open {
|
|
left: 0;
|
|
}
|
|
|
|
.sidebar h3 {
|
|
margin: 0 0 10px;
|
|
}
|
|
|
|
.sidebar input {
|
|
margin: 0 0 10px;
|
|
}
|
|
|
|
.sidebarNodeRowStyle {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
background-color: #e2e2e2;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
border-radius: 10px;
|
|
cursor: grab;
|
|
}
|
|
|
|
.sidebarNodeRowStyle.dragging {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.flow-container {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|