Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:TransformerOptimus/SuperAGI into edi…
Browse files Browse the repository at this point in the history
…t_agent_templates
  • Loading branch information
CoffeeCoder16 committed Jul 17, 2023
2 parents e71a142 + 6b8c80d commit 95cd220
Show file tree
Hide file tree
Showing 135 changed files with 6,650 additions and 2,446 deletions.
9 changes: 7 additions & 2 deletions config_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ TOOLS_DIR: "superagi/tools"

#STORAGE INFO FOR FILES
RESOURCES_INPUT_ROOT_DIR: workspace/input/{agent_id}
RESOURCES_OUTPUT_ROOT_DIR: workspace/output/{agent_id}
RESOURCES_OUTPUT_ROOT_DIR: workspace/output/{agent_id}/{agent_execution_id} # For keeping resources at agent execution level
#RESOURCES_OUTPUT_ROOT_DIR: workspace/output/{agent_id} # For keeping resources at agent level

#S3 RELATED DETAILS ONLY WHEN STORAGE_TYPE IS "S3"
BUCKET_NAME:
Expand Down Expand Up @@ -112,4 +113,8 @@ ENGINE_ID: "stable-diffusion-xl-beta-v2-2-2"

## To use chroma for vector store in resources manager
#CHROMA_HOST_NAME: YOUR_CHROMA_HOST_NAME
#CHROMA_PORT: YOUR_CHROMA_PORT
#CHROMA_PORT: YOUR_CHROMA_PORT

## To use Qdrant for vector store
#QDRANT_HOST_NAME: YOUR_QDRANT_HOST_NAME
#QDRANT_PORT: YOUR_QDRANT_PORT
141 changes: 140 additions & 1 deletion gui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions gui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,21 @@
"axios": "^1.4.0",
"bootstrap": "^5.2.3",
"date-fns": "^2.30.0",
"date-fns-tz": "^2.0.0",
"echarts": "^5.4.2",
"echarts-for-react": "^3.0.2",
"eslint": "8.40.0",
"eslint-config-next": "13.4.2",
"jszip": "^3.10.1",
"mitt": "^3.0.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.43",
"next": "13.4.2",
"react": "18.2.0",
"react-datetime": "^3.2.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.5",
"react-grid-layout": "^1.3.4",
"react-markdown": "^8.0.7",
"react-toastify": "^9.1.3"
}
Expand Down
10 changes: 10 additions & 0 deletions gui/pages/Content/APM/Apm.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.apm_dashboard_container {
display: flex;
flex-direction: column;
}

.apm_dashboard {
margin-top: 16px;
height: calc(100vh - 16vh);
overflow-y: auto;
}
Loading

0 comments on commit 95cd220

Please sign in to comment.