Update README.md
Browse files
README.md
CHANGED
@@ -27,6 +27,68 @@ language:
|
|
27 |
pretty_name: AI Outlook prompts
|
28 |
---
|
29 |
|
30 |
-
# Prompts
|
31 |
|
32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
pretty_name: AI Outlook prompts
|
28 |
---
|
29 |
|
30 |
+
# AI Prompts Dataset
|
31 |
|
32 |
+
A collection of carefully crafted AI prompts used in the AI Outlook Add-in, designed to enhance email communication and assist in software development tasks.
|
33 |
+
|
34 |
+
## Overview
|
35 |
+
|
36 |
+
This dataset contains a variety of AI prompts originally developed for the [AI Outlook Add-in](https://github.com/sctg-development/ai-outlook). These prompts are intended to guide AI language models in tasks such as improving email drafts, translating text, summarizing content, drafting professional correspondence, and assisting with code review and optimization.
|
37 |
+
|
38 |
+
## Contents
|
39 |
+
|
40 |
+
The dataset includes prompts covering the following categories:
|
41 |
+
|
42 |
+
- **Email Enhancement**: Improve the language, tone, and clarity of email drafts in English and French.
|
43 |
+
- **Translation**: Accurately translate text while maintaining the original meaning, tone, and context.
|
44 |
+
- **Summarization**: Summarize complex emails or web pages into clear, concise bullet-point formats.
|
45 |
+
- **Professional Correspondence**: Draft polite and professional emails for various scenarios, including declining invitations, requesting meetings, and following up on communications.
|
46 |
+
- **Code Assistance**: Review code for quality, performance optimization, and security vulnerabilities; add meaningful comments; and create clear documentation.
|
47 |
+
|
48 |
+
## Dataset Structure
|
49 |
+
|
50 |
+
Each prompt in the dataset includes the following fields:
|
51 |
+
|
52 |
+
- `id`: A unique identifier for the prompt.
|
53 |
+
- `system`: Instructions provided to the AI model to set the context and specify the task.
|
54 |
+
- `user`: A template or example of user input that accompanies the system prompt.
|
55 |
+
- `summary`: A brief summary of the prompt's purpose.
|
56 |
+
|
57 |
+
## Usage
|
58 |
+
|
59 |
+
You can load the dataset using the Hugging Face `datasets` library:
|
60 |
+
|
61 |
+
```python
|
62 |
+
from datasets import load_dataset
|
63 |
+
|
64 |
+
dataset = load_dataset("eltorio/ai-prompts")
|
65 |
+
```
|
66 |
+
|
67 |
+
## License
|
68 |
+
|
69 |
+
This dataset is licensed under the [GNU Affero General Public License v3.0 (AGPLv3)](https://www.gnu.org/licenses/agpl-3.0.en.html), the same license as the AI Outlook Add-in.
|
70 |
+
|
71 |
+
## Author
|
72 |
+
|
73 |
+
- **Ronan Le Meillat**
|
74 |
+
- Company: SCTG Development
|
75 |
+
- GitHub: [sctg-development](https://github.com/sctg-development/)
|
76 |
+
|
77 |
+
## Acknowledgments
|
78 |
+
|
79 |
+
- [AI Outlook Add-in](https://github.com/sctg-development/ai-outlook): The source of the prompts in this dataset.
|
80 |
+
|
81 |
+
## Citation
|
82 |
+
|
83 |
+
If you use this dataset, please cite it as follows:
|
84 |
+
|
85 |
+
```bibtex
|
86 |
+
@dataset{le_meillat_ai_prompts_2024,
|
87 |
+
author = {Le Meillat, Ronan},
|
88 |
+
title = {AI Prompts Dataset},
|
89 |
+
year = {2024},
|
90 |
+
publisher = {Hugging Face},
|
91 |
+
url = {https://huggingface.co/datasets/eltorio/ai-prompts},
|
92 |
+
note = {Dataset of AI prompts for enhancing email communication and software development tasks},
|
93 |
+
}
|
94 |
+
```
|