Add Kimi 2 Model

This commit is contained in:
Beingpax 2025-07-17 19:35:52 +05:45
parent 82c552939c
commit fd03c1ca81
2 changed files with 2 additions and 2 deletions

View File

@ -75,6 +75,7 @@ enum AIProvider: String, CaseIterable {
case .groq:
return [
"llama-3.3-70b-versatile",
"moonshotai/kimi-k2-instruct",
"llama-3.1-8b-instant",
"qwen/qwen3-32b",
"meta-llama/llama-4-maverick-17b-128e-instruct"

View File

@ -6,7 +6,6 @@ class PolarService {
private let apiToken = "Token"
private let baseURL = "https://api.polar.sh"
struct LicenseValidationResponse: Codable {
let status: String
let limit_activations: Int?
@ -195,4 +194,4 @@ enum LicenseError: Error, LocalizedError {
return "This license does not require activation."
}
}
}
}