kb_update_professional
Update professional details including occupation, experience, skills, and education to maintain accurate personal knowledge for AI context.
Instructions
Update professional information (job, skills, experience, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
certifications | No | ||
currentCompany | No | ||
education | No | ||
industry | No | ||
occupation | No | ||
role | No | ||
skills | No | ||
specializations | No | ||
yearsOfExperience | No |
Input Schema (JSON Schema)
{
"properties": {
"certifications": {
"items": {
"type": "string"
},
"type": "array"
},
"currentCompany": {
"type": "string"
},
"education": {
"items": {
"type": "string"
},
"type": "array"
},
"industry": {
"type": "string"
},
"occupation": {
"type": "string"
},
"role": {
"type": "string"
},
"skills": {
"items": {
"type": "string"
},
"type": "array"
},
"specializations": {
"items": {
"type": "string"
},
"type": "array"
},
"yearsOfExperience": {
"type": "number"
}
},
"type": "object"
}