API_KEY //You can use directly //画像なしで応答を取得する suspend fun getResponse(prompt: String): Chat { val generativeModel = GenerativeModel( modelName = "gemini-pro", apiKey = api_key, ) try { val response = withContext(Dispatchers....