From 48a0c2f11935a17132492583d4aad51c5a407bcb Mon Sep 17 00:00:00 2001 From: Andrew Heard <andrewheard@google.com> Date: Fri, 15 Mar 2024 18:13:34 +0000 Subject: [PATCH] Remove unused `tunedModelResourcePrefix` constant (#121) --- Sources/GoogleAI/GenerativeModel.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/Sources/GoogleAI/GenerativeModel.swift b/Sources/GoogleAI/GenerativeModel.swift index 73bf796..3617cd3 100644 --- a/Sources/GoogleAI/GenerativeModel.swift +++ b/Sources/GoogleAI/GenerativeModel.swift @@ -21,9 +21,6 @@ public final class GenerativeModel { // The prefix for a model resource in the Gemini API. private static let modelResourcePrefix = "models/" - // The prefix for a tuned model resource in the Gemini API. - private static let tunedModelResourcePrefix = "tunedModels/" - /// The resource name of the model in the backend; has the format "models/model-name". let modelResourceName: String