Files
steipete--codexbar/Sources/CodexBarCore/Providers/Crof/CrofProviderDescriptor.swift
T
2026-07-13 12:22:33 +08:00

47 lines
1.9 KiB
Swift

import Foundation
public enum CrofProviderDescriptor {
public static let descriptor: ProviderDescriptor = Self.makeDescriptor()
static func makeDescriptor() -> ProviderDescriptor {
ProviderDescriptor(
id: .crof,
metadata: ProviderMetadata(
id: .crof,
displayName: "Crof",
sessionLabel: "Requests",
weeklyLabel: "Credits",
opusLabel: nil,
supportsOpus: false,
supportsCredits: false,
creditsHint: "Credit balance from the Crof usage API",
toggleTitle: "Show Crof usage",
cliName: "crof",
defaultEnabled: false,
isPrimaryProvider: false,
usesAccountFallback: false,
browserCookieOrder: nil,
dashboardURL: "https://crof.ai/dashboard",
statusPageURL: nil,
statusLinkURL: nil),
branding: ProviderBranding(
iconStyle: .crof,
iconResourceName: "ProviderIcon-crof",
color: ProviderColor(red: 0.18, green: 0.67, blue: 0.58)),
tokenCost: ProviderTokenCostConfig(
supportsTokenCost: false,
noDataMessage: { "Crof cost summary is not available via API." }),
fetchPlan: .apiToken(
strategyID: "crof.api",
resolveToken: { ProviderTokenResolver.crofToken(environment: $0) },
missingCredentialsError: { CrofUsageError.missingCredentials },
loadUsage: { apiKey, _ in
try await CrofUsageFetcher.fetchUsage(apiKey: apiKey).toUsageSnapshot()
}),
cli: ProviderCLIConfig(
name: "crof",
aliases: ["crofai"],
versionDetector: nil))
}
}