81 lines
1.8 KiB
Markdown
81 lines
1.8 KiB
Markdown
# Personal Preferences Configuration
|
|
|
|
The `.kbot/preferences.md` file is used to store personal information and preferences that help the AI assistant provide more personalized and contextual responses.
|
|
|
|
## File Location
|
|
|
|
The preferences file should be located at:
|
|
```
|
|
.kbot/preferences.md
|
|
```
|
|
|
|
## File Structure
|
|
|
|
The preferences file uses Markdown format and is structured into several sections:
|
|
|
|
### Personal Information
|
|
|
|
```markdown
|
|
|
|
## My Preferences
|
|
|
|
Gender : [gender]
|
|
Location : [city, country]
|
|
Language : [primary language, preferred language]
|
|
Occupation : [job title, specialties]
|
|
Age : [age range]
|
|
```
|
|
|
|
### Contact Information
|
|
```markdown
|
|
## Contacts
|
|
|
|
My email address : [your email]
|
|
[Additional contacts with descriptions]
|
|
```
|
|
|
|
### Content Preferences
|
|
```markdown
|
|
## Content
|
|
|
|
When creating content
|
|
|
|
- [content formatting preferences]
|
|
- [communication style preferences]
|
|
- [email signature preferences]
|
|
- [language preferences for specific contacts]
|
|
- [search preferences]
|
|
```
|
|
|
|
## Example Configuration
|
|
|
|
Here's an example of a complete preferences file:
|
|
|
|
```markdown
|
|
## My Preferences
|
|
|
|
Gender : male
|
|
Location : Tarragona, Spain
|
|
Language : German, prefer english
|
|
Occupation : software developer, Typescript
|
|
Age : 45+
|
|
|
|
## Contacts
|
|
|
|
My email address : example@email.com
|
|
My wife's email (Anne) : anne@email.com
|
|
|
|
## Content
|
|
|
|
When creating content
|
|
|
|
- always Markdown
|
|
- always add links
|
|
- when sending emails, always add 'kind regards, [Your Name]'
|
|
- when sending emails to [Contact], always in [specific language]
|
|
- when searching for news, always add links to videos, search via Google and other news outlets
|
|
```
|
|
|
|
## Updating Preferences
|
|
|
|
You can update your preferences by directly editing the `.kbot/preferences.md` file. Changes take effect immediately for new interactions with the AI assistant. |