Class: Melaya::AgentsNamespace
- Inherits:
-
Struct
- Object
- Struct
- Melaya::AgentsNamespace
- Defined in:
- lib/melaya/namespaces.rb
Overview
Namespace grouping all agent-plane modules.
Modules:
pipelines— Pipeline runs, traces, schedules, and overview dashboard. (also aliased asrunsfor ergonomics)hitl— Human-in-the-loop approval queue: list pending, approve, reject.assistant— Assistant onboarding profile (get + set).phone— Phone device control: pair, list, screen-tree, apps.evals— Agent evaluation runs and benchmarks.models— AI model list (reached via credentials#list_models; this is the CredentialsAPI instance filtered by convention — callmodels.list_models(provider: "anthropic")etc.)
Instance Attribute Summary collapse
-
#assistant ⇒ Object
Returns the value of attribute assistant.
-
#evals ⇒ Object
Returns the value of attribute evals.
-
#hitl ⇒ Object
Returns the value of attribute hitl.
-
#models ⇒ Object
Returns the value of attribute models.
-
#phone ⇒ Object
Returns the value of attribute phone.
-
#pipelines ⇒ Object
Returns the value of attribute pipelines.
Instance Method Summary collapse
-
#runs ⇒ Object
runsis an ergonomic alias forpipelines(agents call them "runs").
Instance Attribute Details
#assistant ⇒ Object
Returns the value of attribute assistant
63 64 65 |
# File 'lib/melaya/namespaces.rb', line 63 def assistant @assistant end |
#evals ⇒ Object
Returns the value of attribute evals
63 64 65 |
# File 'lib/melaya/namespaces.rb', line 63 def evals @evals end |
#hitl ⇒ Object
Returns the value of attribute hitl
63 64 65 |
# File 'lib/melaya/namespaces.rb', line 63 def hitl @hitl end |
#models ⇒ Object
Returns the value of attribute models
63 64 65 |
# File 'lib/melaya/namespaces.rb', line 63 def models @models end |
#phone ⇒ Object
Returns the value of attribute phone
63 64 65 |
# File 'lib/melaya/namespaces.rb', line 63 def phone @phone end |
#pipelines ⇒ Object
Returns the value of attribute pipelines
63 64 65 |
# File 'lib/melaya/namespaces.rb', line 63 def pipelines @pipelines end |
Instance Method Details
#runs ⇒ Object
runs is an ergonomic alias for pipelines (agents call them "runs").
73 74 75 |
# File 'lib/melaya/namespaces.rb', line 73 def runs pipelines end |