Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge dev in prod #81

Merged
merged 10 commits into from
Jul 19, 2024
Next Next commit
fix/Fixed indentation. (#78)
  • Loading branch information
merlynmarc authored Jul 10, 2024
commit cb30e22944a272937b88e312231e374814a962e9
14 changes: 7 additions & 7 deletions ae/core/system_orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ def __init__(self, agent_scenario:str="user,planner_agent,browser_nav_agent,brow


def __populate_orchestrator_info(self):
"""
Populates the orchestrator information by retrieving the API key, gateway, and endpoint from environment variables.
"""
self.orchestrator_api_key = os.getenv('ORCHESTRATOR_API_KEY')
self.orchestrator_gateway = os.getenv('ORCHESTRATOR_GATEWAY')
self.orchestrator_endpoint = f"{self.orchestrator_gateway}/api/orchestrate"
self.use_orchestrator = True
"""
Populates the orchestrator information by retrieving the API key, gateway, and endpoint from environment variables.
"""
self.orchestrator_api_key = os.getenv('ORCHESTRATOR_API_KEY')
self.orchestrator_gateway = os.getenv('ORCHESTRATOR_GATEWAY')
self.orchestrator_endpoint = f"{self.orchestrator_gateway}/api/orchestrate"
self.use_orchestrator = True


def __parse_user_and_browser_agent_names(self):
Expand Down