Skip to content

Commit

Permalink
Re-add test major bump
Browse files Browse the repository at this point in the history
  • Loading branch information
emilypgoogle committed Jun 6, 2024
1 parent bb8e188 commit 5a347ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class Chat(private val model: GenerativeModel, val history: MutableList<Content>
* @param prompt The text to be converted into a single piece of [Content] to send to the model.
* @throws InvalidStateException if the [Chat] instance has an active request.
*/
suspend fun sendMessage(prompt: String): GenerateContentResponse {
suspend fun sendMessage(prompt: String, foo: Float): GenerateContentResponse {
val content = content { text(prompt) }
return sendMessage(content)
}
Expand Down

0 comments on commit 5a347ba

Please sign in to comment.