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>
28 lines
516 B
C#
28 lines
516 B
C#
namespace Codex.Dal.Enums;
|
|
|
|
/// <summary>
|
|
/// Represents the status of an agent execution.
|
|
/// </summary>
|
|
public enum ExecutionStatus
|
|
{
|
|
/// <summary>
|
|
/// Execution is currently in progress
|
|
/// </summary>
|
|
Running,
|
|
|
|
/// <summary>
|
|
/// Execution completed successfully
|
|
/// </summary>
|
|
Completed,
|
|
|
|
/// <summary>
|
|
/// Execution failed with an error
|
|
/// </summary>
|
|
Failed,
|
|
|
|
/// <summary>
|
|
/// Execution was cancelled by user or system
|
|
/// </summary>
|
|
Cancelled
|
|
}
|