Returns all keys for the requested providers, ordered by provider then created_at ASC so callers can select the oldest non-empty key per provider without issuing N queries.
(ctx context.Context, providerIds []uuid.UUID)
| 290 | // Returns all keys for the requested providers, ordered by provider then created_at ASC |
| 291 | // so callers can select the oldest non-empty key per provider without issuing N queries. |
| 292 | GetAIProviderKeysByProviderIDs(ctx context.Context, providerIds []uuid.UUID) ([]AIProviderKey, error) |
| 293 | // Returns AI provider rows. Soft-deleted and disabled rows are excluded |
| 294 | // unless include_deleted or include_disabled is set. |
| 295 | GetAIProviders(ctx context.Context, arg GetAIProvidersParams) ([]AIProvider, error) |
no outgoing calls