14 lines
441 B
Kotlin
14 lines
441 B
Kotlin
@file:Suppress("HardCodedStringLiteral")
|
|
|
|
package eu.gaudian.translator
|
|
|
|
object TestConfig {
|
|
// REPLACE with your actual API Key for the test
|
|
const val API_KEY = "YOUR_REAL_API_KEY_HERE"
|
|
|
|
// Optional: If your ApiManager requires a specific provider (e.g., "Mistral", "OpenAI")
|
|
const val PROVIDER_NAME = "Mistral"
|
|
|
|
// Optional: If you need to override the Base URL
|
|
const val BASE_URL = "https://api.mistral.ai/"
|
|
} |