mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-12 17:03:18 -05:00
[GH-ISSUE #22314] feat: Add tool to show user account information #58361
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @webysther on GitHub (Mar 6, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/22314
Check Existing Issues
Verify Feature Scope
Problem Description
Today bio of the current user logged don't have tool to retrieve the data to be used in context, like
current_useror similarDesired Solution you'd like
Add a tool to allow get all information of account: name, bio, birtday and gender
This will make more effective the context about current user and no need to add a memory to tell this information to model.
For instance, if a ask the model: Who am I? He don't know.
Alternatives Considered
Add a memory about all this information
Additional Context
Related to https://github.com/open-webui/open-webui/issues/21587#issuecomment-3929649948
@Classic298 commented on GitHub (Mar 6, 2026):
https://docs.openwebui.com/features/ai-knowledge/prompts#prompt-variables
User Information:
{{USER_NAME}}: Current user's name
{{USER_EMAIL}}: Current user's email address
{{USER_BIO}}: Current user's bio. Configured in Settings > Account > User Profile. If not set, the variable remains unreplaced.
{{USER_GENDER}}: Current user's gender. Configured in Settings > Account > User Profile. If not set, the variable remains unreplaced.
{{USER_BIRTH_DATE}}: Current user's birth date. Configured in Settings > Account > User Profile. If not set, the variable remains unreplaced.
{{USER_AGE}}: Current user's age, calculated from birth date. If birth date is not set, the variable remains unreplaced.
{{USER_LANGUAGE}}: User's selected language
{{USER_LOCATION}}: User's location (requires HTTPS and Settings > Interface toggle)