File tree 17 files changed +0
-49
lines changed
ChatGPT.Core/ViewModels/Chat
17 files changed +0
-49
lines changed Original file line number Diff line number Diff line change 1
1
using System ;
2
2
using System . Collections . Generic ;
3
- using System . Linq ;
4
3
using Nuke . Common ;
5
4
using Nuke . Common . Git ;
6
5
using Nuke . Common . ProjectModel ;
Original file line number Diff line number Diff line change 1
1
using Avalonia ;
2
2
using System ;
3
- using Avalonia . Fonts . Inter ;
4
3
5
4
namespace ChatGPT ;
6
5
Original file line number Diff line number Diff line change 1
1
using System . Threading . Tasks ;
2
2
using Avalonia ;
3
3
using Avalonia . Controls ;
4
- using Avalonia . Interactivity ;
5
4
6
5
namespace ChatGPT ;
7
6
Original file line number Diff line number Diff line change 1
1
using Avalonia ;
2
2
using System ;
3
- using Avalonia . Fonts . Inter ;
4
3
5
4
namespace ChatGPT ;
6
5
Original file line number Diff line number Diff line change 2
2
using System . Text . Json ;
3
3
using AI . Model . Services ;
4
4
using AI . Services ;
5
- using ChatGPT . Model . Services ;
6
- using ChatGPT . Services ;
7
5
using ChatGPT . ViewModels ;
8
6
using ChatGPT . ViewModels . Chat ;
9
7
Original file line number Diff line number Diff line change 1
1
using System . CommandLine ;
2
2
using System . CommandLine . Invocation ;
3
- using ChatGPT ;
4
3
using ChatGPT . CLI ;
5
4
6
5
await CreateRootCommand ( ) . InvokeAsync ( args ) ;
Original file line number Diff line number Diff line change 1
1
using System ;
2
- using System . Collections . Generic ;
3
2
using System . IO ;
4
3
using System . Text . Json . Serialization ;
5
4
using System . Threading . Tasks ;
6
- using ChatGPT . Model . Services ;
7
5
using CommunityToolkit . Mvvm . ComponentModel ;
8
6
using CommunityToolkit . Mvvm . Input ;
9
7
Original file line number Diff line number Diff line change 8
8
using AI ;
9
9
using AI . Model . Json . Chat ;
10
10
using AI . Model . Services ;
11
- using ChatGPT . Model . Services ;
12
11
using CommunityToolkit . Mvvm . ComponentModel ;
13
- using CommunityToolkit . Mvvm . DependencyInjection ;
14
12
15
13
namespace ChatGPT . ViewModels . Chat ;
16
14
Original file line number Diff line number Diff line change 1
- using System ;
2
- using System . Collections . Generic ;
3
- using System . Linq ;
4
- using System . Threading ;
5
- using System . Threading . Tasks ;
6
- using AI ;
7
- using AI . Model . Json . Chat ;
8
- using AI . Model . Services ;
9
-
10
1
namespace ChatGPT . ViewModels . Chat ;
11
2
12
3
public static class ChatViewModelExtensions
Original file line number Diff line number Diff line change 1
1
using System . Runtime . Versioning ;
2
2
using System . Threading . Tasks ;
3
- using AI . Model . Services ;
4
- using AI . Services ;
5
3
using Avalonia ;
6
4
using Avalonia . Browser ;
7
- using ChatGPT . Model . Services ;
8
- using ChatGPT . Services ;
9
- using ChatGPT . ViewModels ;
10
- using ChatGPT . ViewModels . Chat ;
11
- using ChatGPT . ViewModels . Layouts ;
12
- using ChatGPT . ViewModels . Settings ;
13
- using CommunityToolkit . Mvvm . DependencyInjection ;
14
5
15
6
[ assembly: SupportedOSPlatform ( "browser" ) ]
16
7
Original file line number Diff line number Diff line change 15
15
using ChatGPT . ViewModels ;
16
16
using ChatGPT . ViewModels . Layouts ;
17
17
using ChatGPT . Views ;
18
- using CommunityToolkit . Mvvm . DependencyInjection ;
19
18
20
19
namespace ChatGPT ;
21
20
Original file line number Diff line number Diff line change 1
1
using System . Collections . ObjectModel ;
2
2
using System . Text . Json . Serialization ;
3
- using ChatGPT . Model . Services ;
4
3
using ChatGPT . ViewModels . Layouts ;
5
- using CommunityToolkit . Mvvm . DependencyInjection ;
6
4
using CommunityToolkit . Mvvm . Input ;
7
5
8
6
namespace ChatGPT . ViewModels ;
Original file line number Diff line number Diff line change 7
7
using System . Text . Json . Serialization ;
8
8
using System . Threading . Tasks ;
9
9
using AI . Model . Json . ChatGPT ;
10
- using AI . Model . Services ;
11
- using ChatGPT . Model . Services ;
12
10
using ChatGPT . ViewModels . Chat ;
13
- using CommunityToolkit . Mvvm . DependencyInjection ;
14
11
using CommunityToolkit . Mvvm . Input ;
15
12
16
13
namespace ChatGPT . ViewModels ;
Original file line number Diff line number Diff line change 1
1
using System . Collections . Generic ;
2
- using System . Collections . ObjectModel ;
3
- using System . IO ;
4
2
using System . Linq ;
5
- using System . Text ;
6
- using System . Text . Json ;
7
- using System . Text . Json . Serialization ;
8
- using System . Threading . Tasks ;
9
3
using AI . Model . Json . ChatGPT ;
10
- using AI . Model . Services ;
11
- using ChatGPT . Model . Services ;
12
4
using ChatGPT . ViewModels . Chat ;
13
- using CommunityToolkit . Mvvm . DependencyInjection ;
14
- using CommunityToolkit . Mvvm . Input ;
15
5
16
6
namespace ChatGPT . ViewModels ;
17
7
Original file line number Diff line number Diff line change 5
5
using System . Text . Json ;
6
6
using System . Text . Json . Serialization ;
7
7
using System . Threading . Tasks ;
8
- using ChatGPT . Model . Services ;
9
8
using ChatGPT . ViewModels . Settings ;
10
- using CommunityToolkit . Mvvm . DependencyInjection ;
11
9
using CommunityToolkit . Mvvm . Input ;
12
10
using Microsoft . VisualBasic . FileIO ;
13
11
Original file line number Diff line number Diff line change 10
10
using ChatGPT . ViewModels . Layouts ;
11
11
using ChatGPT . ViewModels . Settings ;
12
12
using CommunityToolkit . Mvvm . ComponentModel ;
13
- using CommunityToolkit . Mvvm . DependencyInjection ;
14
13
using CommunityToolkit . Mvvm . Input ;
15
14
16
15
namespace ChatGPT . ViewModels ;
Original file line number Diff line number Diff line change 1
- using System ;
2
1
using System . Linq ;
3
2
using Avalonia ;
4
3
using Avalonia . Controls ;
You can’t perform that action at this time.
0 commit comments