-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33fd5e6
commit 8ea2a1b
Showing
1 changed file
with
12 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
export const generateUserContext = (user) => { | ||
const { first_name, last_name, date_joined, roles, settings } = user; | ||
let ai_context = ''; | ||
/* eslint-disable camelcase */ | ||
|
||
if (first_name) ai_context += "The user's first name is " + first_name + '. '; | ||
if (last_name) ai_context += "The user's last name is " + last_name + '. '; | ||
if (date_joined) ai_context += 'The user joined on ' + date_joined + '. '; | ||
if (roles) roles.forEach((role) => ai_context += 'The user has the role of ' + role.role + ' in the academy of ' + role.academy.name + '. '); | ||
if (settings) ai_context += 'The user has the following settings: Default language: ' + settings.lang + '.'; | ||
export const generateUserContext = (user) => { | ||
const { first_name, last_name, date_joined, roles, settings } = user; | ||
let ai_context = ''; | ||
|
||
if (first_name) ai_context += `The user's first name is ${first_name}. `; | ||
if (last_name) ai_context += `The user's last name is ${last_name}. `; | ||
if (date_joined) ai_context += `The user joined on ${date_joined}. `; | ||
if (roles) roles.forEach((role) => ai_context += `The user has the role of ${role.role} in the academy of ${role.academy.name}. `); | ||
if (settings) ai_context += `The user has the following settings: Default language: ${settings.lang}.`; | ||
|
||
return ai_context; | ||
}; | ||
return ai_context; | ||
}; |