Skip to content

Commit

Permalink
ktfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
David Motsonashvili committed May 29, 2024
1 parent e6735e4 commit 98102b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ class Schema<T>(
description = description,
type = FunctionType.OBJECT,
required = contents.map { it.name },
properties = contents.associateBy { it.name }.toMap()
properties = contents.associateBy { it.name }.toMap(),
)

/** Registers a schema for an array */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ private constructor(
val maxOutputTokens: Int?,
val stopSequences: List<String>?,
val responseMimeType: String?,
val responseSchema: Schema<*>?
val responseSchema: Schema<*>?,
) {

class Builder {
Expand All @@ -60,7 +60,7 @@ private constructor(
maxOutputTokens = maxOutputTokens,
stopSequences = stopSequences,
responseMimeType = responseMimeType,
responseSchema = responseSchema
responseSchema = responseSchema,
)
}

Expand Down

0 comments on commit 98102b9

Please sign in to comment.