Skip to content

Commit

Permalink
[CLEANUP]
Browse files Browse the repository at this point in the history
  • Loading branch information
Kye committed Apr 9, 2024
1 parent 5b70f41 commit f43fbed
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions neo_sapiens/hass_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,7 @@ def create_agents(
out = Agent(
agent_name=name,
system_prompt=system_prompt,
llm=OpenAIChat(
openai_api_key="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",
),
llm=OpenAIChat(openai_api_key=None),
max_loops="auto",
autosave=True,
dashboard=False,
Expand Down Expand Up @@ -195,6 +193,15 @@ def create_agents(


def run_task(task: str = None):
"""
Run a task using the Swarm Orchestrator agent.
Args:
task (str): The task to be executed.
Returns:
None
"""
agent = Agent(
agent_name="Swarm Orchestrator",
system_prompt=None,
Expand Down

0 comments on commit f43fbed

Please sign in to comment.