-
-
Notifications
You must be signed in to change notification settings - Fork 524
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
Kye
committed
Dec 1, 2023
1 parent
8d0b751
commit 84a8449
Showing
4 changed files
with
309 additions
and
39 deletions.
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 |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import os | ||
|
||
from dotenv import load_dotenv | ||
|
||
# Import the OpenAIChat model and the Agent struct | ||
from swarms.models import OpenAIChat | ||
from swarms.structs import Agent | ||
from swarms.structs.autoscaler import AutoScaler | ||
|
||
|
||
# Load the environment variables | ||
load_dotenv() | ||
|
||
# Get the API key from the environment | ||
api_key = os.environ.get("OPENAI_API_KEY") | ||
|
||
# Initialize the language model | ||
llm = OpenAIChat( | ||
temperature=0.5, | ||
openai_api_key=api_key, | ||
) | ||
|
||
|
||
## Initialize the workflow | ||
agent = Agent(llm=llm, max_loops=1, dashboard=True) | ||
|
||
|
||
# Load the autoscaler | ||
autoscaler = AutoScaler( | ||
initial_agents=2, | ||
scale_up_factor=1, | ||
idle_threshold=0.2, | ||
busy_threshold=0.7, | ||
agents=[agent], | ||
autoscale=True, | ||
min_agents=1, | ||
max_agents=5, | ||
custom_scale_strategy=None, | ||
) | ||
print(autoscaler) | ||
|
||
# Run the workflow on a task | ||
out = autoscaler.run( | ||
agent.id, "Generate a 10,000 word blog on health and wellness." | ||
) | ||
print(out) |
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
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
Oops, something went wrong.