File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -43,6 +43,8 @@ export async function generateAnswersWithClaudeWebApi(
43
43
await bot
44
44
. startConversation ( question , params )
45
45
. then ( ( conversation ) => {
46
+ conversation . request = null
47
+ conversation . claude = null
46
48
session . claude_conversation = conversation
47
49
port . postMessage ( { answer : answer , done : true , session : session } )
48
50
cleanController ( )
Original file line number Diff line number Diff line change @@ -602,6 +602,8 @@ export async function generateAnswersWithMoonshotWebApi(
602
602
await bot
603
603
. startConversation ( question , params )
604
604
. then ( ( conversation ) => {
605
+ conversation . request = null
606
+ conversation . moonshot = null
605
607
session . moonshot_conversation = conversation
606
608
port . postMessage ( { answer : answer , done : true , session : session } )
607
609
cleanController ( )
You can’t perform that action at this time.
0 commit comments