start_app
procedure.
app_public.start_app()
: Initializes the app services, including compute pools and services.app_public.service_status()
: Returns the status of the core Roe service.app_public.load_file(stage_name, relative_file_path)
: Loads a file from a specified stage into the app’s storage.core.list_files()
: Returns a list of files stored in the app’s stage.core.create_agent(config)
: Creates a new agent with the specified configuration.core.update_agent(agent_id, config)
: Updates an existing agent with new configuration details.core.get_agent(agent_id)
: Retrieves the configuration of a specified agent.core.list_agents()
: Lists all agents available in the app.core.run_agent(agent_id, inputs)
: Executes an agent with the provided inputs.