File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
firebase-vertexai/src/main/kotlin/com/google/firebase/vertexai Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ internal class FirebaseVertexAIMultiResourceComponent(
4242
4343 @GuardedBy(" this" ) private val googleInstance: MutableList <FirebaseGoogleAI > = mutableListOf ()
4444
45- fun getVertexAI (location : String ): FirebaseVertexAI =
45+ fun getVertexAI (location : String ): FirebaseAI =
4646 synchronized(this ) {
4747 vertexInstances[location]
4848 ? : FirebaseVertexAI (
@@ -56,7 +56,7 @@ internal class FirebaseVertexAIMultiResourceComponent(
5656 .also { vertexInstances[location] = it }
5757 }
5858
59- fun getGoogleAI (): FirebaseGoogleAI =
59+ fun getGoogleAI (): FirebaseAI =
6060 synchronized(this ) {
6161 googleInstance.getOrNull(0 )
6262 ? : FirebaseGoogleAI (
You can’t perform that action at this time.
0 commit comments