-
Notifications
You must be signed in to change notification settings - Fork 1.5k
[FirebaseAI] Add Multimodal Analysis demos #1750
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
YoungHypo
wants to merge
9
commits into
firebase:peterfriese/firebase-ai-quickstart-refresh
Choose a base branch
from
YoungHypo:firebase-multimodal
base: peterfriese/firebase-ai-quickstart-refresh
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
d2d4f87
add multimodal analysis
YoungHypo 1d369bf
fix bug of gemini image generation
YoungHypo a6a7e8e
fix typo
YoungHypo 042c9c5
add error logs
YoungHypo 107e963
add chathistory in multimodal exmaple
YoungHypo 0bcee88
add cloud storage and move firebaseService in viewModels
YoungHypo fe8ff0b
add image in hasher
YoungHypo dd4ae93
fix comments
YoungHypo 401e983
add imageURL
YoungHypo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
11 changes: 0 additions & 11 deletions
11
firebaseai/ChatExample/Assets.xcassets/AccentColor.colorset/Contents.json
This file was deleted.
Oops, something went wrong.
13 changes: 0 additions & 13 deletions
13
firebaseai/ChatExample/Assets.xcassets/AppIcon.appiconset/Contents.json
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,24 +36,31 @@ class ChatViewModel: ObservableObject { | |
|
||
private var model: GenerativeModel | ||
private var chat: Chat | ||
private var stopGenerating = false | ||
|
||
private var chatTask: Task<Void, Never>? | ||
|
||
private var sample: Sample? | ||
private var backendType: BackendOption | ||
|
||
init(firebaseService: FirebaseAI, sample: Sample? = nil) { | ||
init(backendType: BackendOption, sample: Sample? = nil) { | ||
self.sample = sample | ||
self.backendType = backendType | ||
|
||
let firebaseService: FirebaseAI | ||
switch backendType { | ||
case .googleAI: | ||
firebaseService = FirebaseAI.firebaseAI(backend: .googleAI()) | ||
case .vertexAI: | ||
firebaseService = FirebaseAI.firebaseAI(backend: .vertexAI()) | ||
} | ||
|
||
// create a generative model with sample data | ||
model = firebaseService.generativeModel( | ||
modelName: "gemini-2.0-flash-001", | ||
tools: sample?.tools, | ||
modelName: sample?.modelName ?? "gemini-2.5-flash", | ||
generationConfig: sample?.generationConfig, | ||
systemInstruction: sample?.systemInstruction | ||
) | ||
|
||
if let chatHistory = sample?.chatHistory, !chatHistory.isEmpty { | ||
// Initialize with sample chat history if it's available | ||
messages = ChatMessage.from(chatHistory) | ||
chat = model.startChat(history: chatHistory) | ||
} else { | ||
|
@@ -112,13 +119,14 @@ class ChatViewModel: ObservableObject { | |
.content = (messages[messages.count - 1].content ?? "") + text | ||
} | ||
|
||
if let candidate = chunk.candidates.first { | ||
if let groundingMetadata = candidate.groundingMetadata { | ||
self.messages[self.messages.count - 1].groundingMetadata = groundingMetadata | ||
if let inlineDataPart = chunk.inlineDataParts.first { | ||
if let uiImage = UIImage(data: inlineDataPart.data) { | ||
messages[messages.count - 1].image = uiImage | ||
} else { | ||
print("Failed to convert inline data to UIImage") | ||
} | ||
} | ||
Comment on lines
+122
to
128
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
} | ||
|
||
} catch { | ||
self.error = error | ||
print(error.localizedDescription) | ||
|
@@ -156,11 +164,13 @@ class ChatViewModel: ObservableObject { | |
// replace pending message with backend response | ||
messages[messages.count - 1].content = responseText | ||
messages[messages.count - 1].pending = false | ||
} | ||
|
||
if let candidate = response?.candidates.first { | ||
if let groundingMetadata = candidate.groundingMetadata { | ||
self.messages[self.messages.count - 1].groundingMetadata = groundingMetadata | ||
} | ||
if let inlineDataPart = response?.inlineDataParts.first { | ||
if let uiImage = UIImage(data: inlineDataPart.data) { | ||
messages[messages.count - 1].image = uiImage | ||
} else { | ||
print("Failed to convert inline data to UIImage") | ||
} | ||
} | ||
} catch { | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think a ternary might be more compact: