File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public void Exec()
49
49
if ( rs . IsSuccess )
50
50
{
51
51
_service . Chat (
52
- _service . AnalyzeDiffPrompt ,
52
+ _service . AnalyzeDiffPrompt ,
53
53
$ "Here is the `git diff` output: { rs . StdOut } ",
54
54
_cancelToken ,
55
55
update =>
@@ -72,8 +72,8 @@ public void Exec()
72
72
var responseBody = responseBuilder . ToString ( ) ;
73
73
var subjectBuilder = new StringBuilder ( ) ;
74
74
_service . Chat (
75
- _service . GenerateSubjectPrompt ,
76
- $ "Here are the summaries changes:\n { summaryBuilder } ",
75
+ _service . GenerateSubjectPrompt ,
76
+ $ "Here are the summaries changes:\n { summaryBuilder } ",
77
77
_cancelToken ,
78
78
update =>
79
79
{
Original file line number Diff line number Diff line change 2
2
using System . Collections . Generic ;
3
3
using System . Threading ;
4
4
using System . Threading . Tasks ;
5
-
6
5
using Avalonia ;
7
6
using Avalonia . Controls ;
8
7
using Avalonia . Controls . Primitives ;
9
8
using Avalonia . Interactivity ;
10
9
using Avalonia . Media ;
11
10
using Avalonia . Threading ;
12
-
11
+ using AvaloniaEdit ;
13
12
using AvaloniaEdit . Document ;
14
13
using AvaloniaEdit . Editing ;
15
14
using AvaloniaEdit . TextMate ;
16
- using AvaloniaEdit ;
17
15
18
16
namespace SourceGit . Views
19
17
{
You can’t perform that action at this time.
0 commit comments