File tree Expand file tree Collapse file tree
Core/Sources/HostApp/AccountSettings Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ struct AzureView: View {
4848 let reply =
4949 try await ChatGPTService (
5050 configuration: UserPreferenceChatGPTConfiguration ( )
51- . overriding ( . init( featureProvider: . azureOpenAI) )
5251 )
5352 . sendAndWait ( content: " Hello " , summary: nil )
5453 toast ( " ChatGPT replied: \( reply ?? " N/A " ) " , . info)
Original file line number Diff line number Diff line change 1+ import SwiftUI
2+ import Keychain
3+ import ComposableArchitecture
4+ import AIModel
5+
6+ struct ChatModelManagement : ReducerProtocol {
7+ struct State : Equatable {
8+ var models : [ ChatModel ]
9+ }
10+ }
11+
12+ struct ChatModelView : View {
13+ var body : some View {
14+
15+ }
16+ }
Original file line number Diff line number Diff line change 1+ import SwiftUI
2+ import Keychain
Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ struct OpenAIView: View {
5353 let reply =
5454 try await ChatGPTService (
5555 configuration: UserPreferenceChatGPTConfiguration ( )
56- . overriding ( . init( featureProvider: . openAI) )
5756 )
5857 . sendAndWait ( content: " Hello " , summary: nil )
5958 toast ( " ChatGPT replied: \( reply ?? " N/A " ) " , . info)
You can’t perform that action at this time.
0 commit comments