-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
99 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
/obj | ||
/bin | ||
/.vs |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-602 KB
.vs/VisualChatBot/FileContentIndex/331d4981-d636-40bb-935e-c35b2ec89bf9.vsidx
Binary file not shown.
Binary file removed
BIN
-58.7 KB
.vs/VisualChatBot/FileContentIndex/68690106-bf58-48c5-a8d6-1ea60f5f2086.vsidx
Binary file not shown.
Binary file removed
BIN
-60.2 KB
.vs/VisualChatBot/FileContentIndex/8d2696c6-1b89-4ae4-9d44-8f0ac7e7f7b3.vsidx
Binary file not shown.
Binary file removed
BIN
-71.7 KB
.vs/VisualChatBot/FileContentIndex/e2ad9cdb-ef8f-4e2a-9cf9-dd17a81497dc.vsidx
Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace VisualChatBot.Models | ||
{ | ||
public class LastMessage | ||
{ | ||
/// <summary> | ||
/// 上次的所有对话 | ||
/// </summary> | ||
public static List<Message> AllMessage { get; set; } = new List<Message>(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
using CommunityToolkit.Mvvm.ComponentModel; | ||
using Newtonsoft.Json; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace VisualChatBot.Models | ||
{ | ||
public partial class Message : ObservableObject | ||
{ | ||
public string role; | ||
public string content; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters