Skip to content

Commit 9db6704

Browse files
committed
Update error message
1 parent 8fab2d2 commit 9db6704

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

Tool/Package.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ let package = Package(
5252
.library(name: "CommandHandler", targets: ["CommandHandler"]),
5353
.library(name: "CodeDiff", targets: ["CodeDiff"]),
5454
.library(name: "BuiltinExtension", targets: ["BuiltinExtension"]),
55+
.library(name: "BingSearchService", targets: ["BingSearchService"]),
5556
],
5657
dependencies: [
5758
// A fork of https://github.com/aespinilla/Tiktoken to allow loading from local files.

Tool/Sources/BingSearchService/BingSearchService.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ enum BingSearchError: Error, LocalizedError {
3737
case let .searchURLFormatIncorrect(url):
3838
return "The search URL format is incorrect: \(url)"
3939
case .subscriptionKeyNotAvailable:
40-
return "The I didn't provide a subscription key to use Bing search."
40+
return "Bing search subscription key is not available, please set it up in the service tab."
4141
}
4242
}
4343
}

0 commit comments

Comments
 (0)