Multi-agent AI laboratory with ASP.NET Core 8.0 backend and Flutter frontend. Implements CQRS architecture, OpenAPI contract-first API design. BACKEND: Agent management, conversations, executions with PostgreSQL + Ollama FRONTEND: Cross-platform UI with strict typing and Result-based error handling Co-Authored-By: Jean-Philippe Brule <jp@svrnty.io>
23 lines
459 B
C#
23 lines
459 B
C#
namespace Codex.Dal.Enums;
|
|
|
|
/// <summary>
|
|
/// Represents the current status of an agent.
|
|
/// </summary>
|
|
public enum AgentStatus
|
|
{
|
|
/// <summary>
|
|
/// Agent is active and available for execution
|
|
/// </summary>
|
|
Active,
|
|
|
|
/// <summary>
|
|
/// Agent is inactive and not available for execution
|
|
/// </summary>
|
|
Inactive,
|
|
|
|
/// <summary>
|
|
/// Agent has encountered an error and may need reconfiguration
|
|
/// </summary>
|
|
Error
|
|
}
|