-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathREADME.html
81 lines (76 loc) · 2.52 KB
/
README.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI Text Assistant - ChatGPT Recipe Toolkit</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.header {
text-align: center;
padding: 20px;
background: #f5f5f5;
margin-bottom: 30px;
}
.feature-list {
list-style-type: none;
padding: 0;
}
.feature-list li {
margin: 10px 0;
padding-left: 20px;
position: relative;
}
.feature-list li:before {
content: "→";
position: absolute;
left: 0;
}
</style>
</head>
<body>
<div class="header">
<h1>AI Text Assistant</h1>
<p>Developed by Chris Loetz</p>
</div>
<h2>About the Tool</h2>
<p>The AI Text Assistant is a powerful desktop application that leverages OpenAI's GPT models to enhance your writing and communication workflow. Built with Python and PyQt6, it provides an intuitive interface for common text processing tasks.</p>
<h2>Key Features</h2>
<ul class="feature-list">
<li>Text rephrasing with customizable tone</li>
<li>Document summarization</li>
<li>Automated reply generation</li>
<li>Email drafting assistance</li>
<li>Length control options</li>
<li>Settings management</li>
</ul>
<h2>Use Cases</h2>
<p>Perfect for:</p>
<ul>
<li>Business professionals managing correspondence</li>
<li>Content creators needing quick rewrites</li>
<li>Customer service teams handling responses</li>
<li>Anyone looking to improve their writing efficiency</li>
</ul>
<h2>Getting Started</h2>
<p>To use the tool:</p>
<ol>
<li>Install the application</li>
<li>Enter your OpenAI API key in settings</li>
<li>Choose your desired operation</li>
<li>Input your text</li>
<li>Select tone and length preferences</li>
<li>Process and receive your enhanced text</li>
</ol>
<footer>
<p>For more information and updates, visit our GitHub repository.</p>
<p>© 2024 Chris Loetz. All rights reserved.</p>
</footer>
</body>
</html>