generated from kyegomez/Python-Package-Template
-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Your Name
committed
Oct 9, 2024
1 parent
a64c96a
commit 2706a5b
Showing
4 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
[![Multi-Modality](agorabanner.png)](https://discord.gg/qUtxnK2NMf) | ||
|
||
# Swarms Cloud | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Agent metadata and description | ||
agent_name: "example-agent" | ||
description: "This agent performs financial data analysis." | ||
version: "v1.0" | ||
author: "Agent Creator Name" | ||
contact_email: "[email protected]" | ||
tags: | ||
- "financial" | ||
- "data-analysis" | ||
- "agent" | ||
|
||
# Deployment configuration | ||
deployment_config: | ||
dockerfile_path: "./Dockerfile" | ||
|
||
resources: | ||
cpu: 2 # Number of CPUs allocated | ||
memory: "2Gi" # Memory allocation | ||
max_instances: 5 # Maximum number of instances for auto-scaling | ||
min_instances: 1 # Minimum number of instances to keep warm | ||
timeout: 300s # Request timeout setting | ||
|
||
autoscaling: | ||
max_concurrency: 80 # Max requests handled concurrently | ||
target_utilization: 0.6 # CPU utilization target for auto-scaling | ||
|
||
environment_variables: | ||
DATABASE_URL: "postgres://user:password@db-url" | ||
API_KEY: "your-secret-api-key" | ||
LOG_LEVEL: "info" | ||
|
||
secrets: | ||
SECRET_NAME_1: "projects/my-project/secrets/my-secret/versions/latest" |
Binary file not shown.
File renamed without changes.