Skip to content

Commit

Permalink
Add README
Browse files Browse the repository at this point in the history
  • Loading branch information
78 committed Jun 23, 2024
1 parent a48ebda commit 5eea6b3
Show file tree
Hide file tree
Showing 28 changed files with 416 additions and 391 deletions.
388 changes: 0 additions & 388 deletions MainForm.resx

This file was deleted.

25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# TenBuddy

一个 PC 桌面聊天助手,目前仅用于研究学习,看看 LLM 的能力在 IM 场景里能做什么。

## 功能

- 支持 Windows 版本的 PC WeChat ✅
- 支持 Windows 版本的 QQ [未实现]
- 支持 MacOS 版本的 PC WeChat [未实现]


## 示例

### 优化文案

<img src="./docs/refine_input.png">

### 分析人物

<img src="./docs/group_analyze.png">

### 分析细节

<img src="./docs/friend_analyze.png">

2 changes: 1 addition & 1 deletion TenBuddy.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.10.35013.160
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TenBuddy", "TenBuddy.csproj", "{06C0A80B-AC5D-4903-BB17-AB5BCF5B3F56}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TenBuddy", "TenBuddy/TenBuddy.csproj", "{06C0A80B-AC5D-4903-BB17-AB5BCF5B3F56}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
4 changes: 2 additions & 2 deletions Chat.cs → TenBuddy/Chat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public class Chat
public List<string> Messages;
public Chat(string name)
{
this.Name = name;
this.Messages = new List<string>();
Name = name;
Messages = new List<string>();
}
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
388 changes: 388 additions & 0 deletions TenBuddy/MainForm.resx

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added TenBuddy/favicon.ico
Binary file not shown.
Binary file added docs/friend_analyze.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/group_analyze.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/refine_input.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed favicon.ico
Binary file not shown.

0 comments on commit 5eea6b3

Please sign in to comment.