Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions FirebaseAI/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Unreleased
- [fixed] Fixed `Sendable` warnings introduced in the Xcode 26 beta. (#14947)
- [added] Added support for setting `title` in string, number and array `Schema`
types. (#14971)

# 11.13.0
- [feature] Initial release of the Firebase AI Logic SDK (`FirebaseAI`). This
Expand Down
14 changes: 7 additions & 7 deletions FirebaseAI/Tests/Unit/Types/SchemaTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ final class SchemaTests: XCTestCase {
"description" : "\(description)",
"format" : "date-time",
"nullable" : true,
"title": "\(title)",
"title" : "\(title)",
"type" : "STRING"
}
""")
Expand Down Expand Up @@ -114,7 +114,7 @@ final class SchemaTests: XCTestCase {
],
"format" : "enum",
"nullable" : true,
"title": "\(title)",
"title" : "\(title)",
"type" : "STRING"
}
""")
Expand Down Expand Up @@ -160,7 +160,7 @@ final class SchemaTests: XCTestCase {
"maximum" : \(maximum),
"minimum" : \(minimum),
"nullable" : true,
"title": "\(title)",
"title" : "\(title)",
"type" : "NUMBER"
}
""")
Expand Down Expand Up @@ -204,7 +204,7 @@ final class SchemaTests: XCTestCase {
"maximum" : \(maximum),
"minimum" : \(minimum),
"nullable" : true,
"title": "\(title)",
"title" : "\(title)",
"type" : "NUMBER"
}
""")
Expand Down Expand Up @@ -251,7 +251,7 @@ final class SchemaTests: XCTestCase {
"maximum" : \(maximum),
"minimum" : \(minimum),
"nullable" : true,
"title": "\(title)",
"title" : "\(title)",
"type" : "INTEGER"
}
""")
Expand Down Expand Up @@ -285,7 +285,7 @@ final class SchemaTests: XCTestCase {
{
"description" : "\(description)",
"nullable" : true,
"title": "\(title)",
"title" : "\(title)",
"type" : "BOOLEAN"
}
""")
Expand Down Expand Up @@ -341,7 +341,7 @@ final class SchemaTests: XCTestCase {
"maxItems" : \(maxItems),
"minItems" : \(minItems),
"nullable" : true,
"title": "\(title)",
"title" : "\(title)",
"type" : "ARRAY"
}
""")
Expand Down
Loading