#how to use personality in Hercai
1 messages · Page 1 of 1 (latest)
how to use personality in Hercai
in the hercai types
* @param {string} personality It includes the features that you want to be included in the output you want from artificial intelligence.
* @example client.question({model:"v3-beta",content:"how are you?"})
* @type {string} The Question You Want to Ask Artificial Intelligence.
* @returns {Hercai}
* @async
*/
question(object:{model:"v3"|"v3-32k"|"turbo"|"turbo-16k"|"gemini",content:string,personality?:string|""}):Promise<{content:string,reply:string}>;
it is written this way
as string
so should i pass the content of the text file
or path the file path
ig it is the file content
because in the api
it is being passed
as data
so it is the content
Right?