Skip to content

Commit d01c975

Browse files
committed
swift format
1 parent 520d777 commit d01c975

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Examples/text_chat/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ let package = Package(
77
name: "TextChat",
88
platforms: [.macOS(.v15), .iOS(.v18), .tvOS(.v18)],
99
products: [
10-
.executable(name: "TextChat", targets: ["TextChat"]),
10+
.executable(name: "TextChat", targets: ["TextChat"])
1111
],
1212
dependencies: [
1313
// for production use, uncomment the following line

Examples/text_chat/Sources/TextChat.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ struct TextChat {
3232
let bedrock = try await BedrockService(
3333
region: .useast1,
3434
logger: logger
35-
// uncomment if you use SSO with AWS Identity Center
36-
// authentication: .sso
35+
// uncomment if you use SSO with AWS Identity Center
36+
// authentication: .sso
3737
)
3838

3939
// select a model that supports the converse modality
@@ -61,7 +61,7 @@ struct TextChat {
6161
}
6262

6363
print("\nAssistant: ", terminator: "")
64-
64+
6565
if request == nil {
6666
// create a new request
6767
request = try ConverseRequestBuilder(with: model)

0 commit comments

Comments
 (0)