Skip to content

Commit 72fb69a

Browse files
committed
Update texts
1 parent 014023a commit 72fb69a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Core/Sources/HostApp/FeatureSettings/ChatSettingsView.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ struct ChatSettingsView: View {
313313
"Preferred Chat Model",
314314
selection: $settings.preferredChatModelIdForSenseScope
315315
) {
316-
Text("None").tag("")
316+
Text("Use the default model").tag("")
317317

318318
if !settings.chatModels
319319
.contains(where: {
@@ -364,7 +364,7 @@ struct ChatSettingsView: View {
364364
"Preferred Chat Model",
365365
selection: $settings.preferredChatModelIdForProjectScope
366366
) {
367-
Text("None").tag("")
367+
Text("Use the default model").tag("")
368368

369369
if !settings.chatModels
370370
.contains(where: {
@@ -390,7 +390,7 @@ struct ChatSettingsView: View {
390390

391391
SubSection(
392392
title: Text("Web Scope"),
393-
description: "Allow the bot to search on Bing or read a web page."
393+
description: "Allow the bot to search on Bing or read a web page. The current implementation requires function calling."
394394
) {
395395
Form {
396396
Toggle(isOn: $settings.enableWebScopeByDefaultInChatContext) {
@@ -401,7 +401,7 @@ struct ChatSettingsView: View {
401401
"Preferred Chat Model",
402402
selection: $settings.preferredChatModelIdForWebScope
403403
) {
404-
Text("None").tag("")
404+
Text("Use the default model").tag("")
405405

406406
if !settings.chatModels
407407
.contains(where: {

0 commit comments

Comments
 (0)