I am looking to implement user preferences in my workshop / OSDK application whereby a user can select their preferred LLM model which is then saved to the Ontology so when they return to the app later, their preferred LLM model is already selected for use.
How should I go about creating this feature? I was thinking that I could create a separate user object specifically for this app and store the user preferences there. But that would mean that I would somehow have to create a new user object when someone new enters the app, whereas I’d much rather be able to associate preferences with users across the enrollment without dealing with creating new objects.
Also, how can I access the current user’s multipass attributes in a React OSDK application?