kb_update_personal
Update your personal details like name, location, languages, and pronouns to maintain accurate context for AI interactions.
Instructions
Update personal information (name, location, languages, etc.)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| birthPlace | No | ||
| birthYear | No | ||
| currentLocation | No | ||
| languages | No | ||
| name | No | ||
| nationality | No | ||
| pronouns | No | ||
| timezone | No |
Input Schema (JSON Schema)
{
"properties": {
"birthPlace": {
"type": "string"
},
"birthYear": {
"type": "number"
},
"currentLocation": {
"type": "string"
},
"languages": {
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"type": "string"
},
"nationality": {
"type": "string"
},
"pronouns": {
"type": "string"
},
"timezone": {
"type": "string"
}
},
"type": "object"
}