File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
examples/demo-apps/apple_ios/LLaMA/LLaMA/Application Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -495,7 +495,6 @@ struct ContentView: View {
495
495
var message = messages. removeLast ( )
496
496
message. text += textToFlush
497
497
message. text += message. text. isEmpty ? " Thinking... \n \n " : " \n \n Thinking... \n \n "
498
- message. format = . italic
499
498
message. tokenCount += flushedTokenCount + 1 // + 1 for the start thinking token.
500
499
message. dateUpdated = Date ( )
501
500
messages. append ( message)
@@ -509,7 +508,6 @@ struct ContentView: View {
509
508
var message = messages. removeLast ( )
510
509
message. text += textToFlush
511
510
message. text += " \n \n Finished thinking. \n \n "
512
- message. format = . italic
513
511
message. tokenCount += flushedTokenCount + 1 // + 1 for the end thinking token.
514
512
message. dateUpdated = Date ( )
515
513
messages. append ( message)
You can’t perform that action at this time.
0 commit comments