Skip to content

Commit

Permalink
bunny crash fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
guinmoon committed Jan 27, 2025
1 parent 5d3e152 commit f8a872c
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions LLMFarm.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,7 @@
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 13.3;
MARKETING_VERSION = 1.4.1;
MARKETING_VERSION = 1.4.3;
PRODUCT_BUNDLE_IDENTIFIER = com.guinmoon.LLMFarm;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down Expand Up @@ -1063,7 +1063,7 @@
LD_RUNPATH_SEARCH_PATHS = "@executable_path/Frameworks";
"LD_RUNPATH_SEARCH_PATHS[sdk=macosx*]" = "@executable_path/../Frameworks";
MACOSX_DEPLOYMENT_TARGET = 13.3;
MARKETING_VERSION = 1.4.1;
MARKETING_VERSION = 1.4.3;
PRODUCT_BUNDLE_IDENTIFIER = com.guinmoon.LLMFarm;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
Expand Down
34 changes: 17 additions & 17 deletions LLMFarm/Chats/ChatView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -153,24 +153,24 @@ struct ChatView: View {
.textSelection(.enabled)
}
.listRowSeparator(.hidden)
// Text("").id("latest")
Text("").id("latest")
// Divider()
Button {
Task{
aiChatModel.RegenerateLstMessage()
}
}
label: {
Image(systemName: "arrow.uturn.backward.square")
.resizable()
.foregroundColor(.white)
.frame(width: 25, height: 25)
// .padding([.bottom, .trailing], 15)
.opacity(0.4)
Text("Regenerate last message")
}
.buttonStyle(BorderlessButtonStyle())
.id("latest")
// Button {
// Task{
// aiChatModel.RegenerateLstMessage()
// }
// }
// label: {
// Image(systemName: "arrow.uturn.backward.square")
// .resizable()
// .foregroundColor(.white)
// .frame(width: 25, height: 25)
//// .padding([.bottom, .trailing], 15)
// .opacity(0.4)
// Text("Regenerate last message")
// }
// .buttonStyle(BorderlessButtonStyle())
// .id("latest")

}
.textSelection(.enabled)
Expand Down
2 changes: 1 addition & 1 deletion llmfarm_core.swift

0 comments on commit f8a872c

Please sign in to comment.