添加项目文件。

This commit is contained in:
yangwx
2025-03-12 20:02:52 +08:00
parent 4d34907fa7
commit 3ccd6d9a39
32 changed files with 1833 additions and 0 deletions

19
MainWindow.xaml.cs Normal file
View File

@@ -0,0 +1,19 @@
using System.Windows;
using YwxApp.AiChat.Services;
using YwxApp.AiChat.ViewModels;
namespace YwxApp.AiChat;
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
//OllamaService ollamaService = new();
//ollamaService.Configure("http://192.168.1.3:11434", "deepseek-r1:1.5b");
//this.DataContext = new ChatViewModel(new OllamaService());
}
}