AlbsStrategy Enum
The AlbsStrategy enum defines load balancing strategies for AI Assistant Load Balancers.
Definition
namespace App\Enums;
enum AlbsStrategy: string
{
case ROUND_ROBIN = 'round_robin';
case PRIORITY = 'priority';
case WEIGHTED = 'weighted';
case LEAST_CONNECTIONS = 'least_connections';
}
Values
| Value | Label | Description |
|---|---|---|
round_robin | Round Robin | Distribute calls evenly in sequence |
priority | Priority | Route by priority order (lowest number first) |
weighted | Weighted | Route by percentage weights |
least_connections | Least Connections | Route to least busy assistant |
Used By
- AiAssistantLoadBalancer model