From 9c459c8afc9d16cea97232765ea6c02ead1b1e16 Mon Sep 17 00:00:00 2001 From: Andrew Heard 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 4eb5caa..aa14f68 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