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>
7 lines
177 B
C#
7 lines
177 B
C#
namespace Codex.Dal;
|
|
|
|
public interface IQueryableProviderOverride<T>
|
|
{
|
|
Task<IQueryable<T>> GetQueryableAsync(object query, CancellationToken cancellationToken = default);
|
|
}
|