mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-09-01 21:09:15 +00:00
17 lines
445 B
C#
17 lines
445 B
C#
namespace AIStudio.Provider;
|
|
|
|
public enum ProviderRequestFailureReason
|
|
{
|
|
NONE,
|
|
INSUFFICIENT_QUOTA,
|
|
TOO_MANY_REQUESTS,
|
|
|
|
/// <summary>
|
|
/// The provider does not serve the requested model.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This applies to gateways which route to other providers: the model exists, but the one
|
|
/// meant to answer for it does not offer it.
|
|
/// </remarks>
|
|
MODEL_NOT_SUPPORTED_BY_PROVIDER,
|
|
} |