@xuda.io/ai_module 1.1.4764 → 1.1.4765
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.mjs +8 -4
- package/package.json +1 -1
package/index.mjs
CHANGED
|
@@ -6189,15 +6189,19 @@ export const get_profile_avatar = async function (profile_picture, uid, prompt,
|
|
|
6189
6189
|
/// PERSONAL
|
|
6190
6190
|
const create_avatar_from_pic = async function () {
|
|
6191
6191
|
const { bio, country, mainCategory, subCategory } = metadata;
|
|
6192
|
+
|
|
6193
|
+
const prompt = `Completely remove the background, enhance and color-correct the subject, and return only a centered head-and-shoulders portrait facing the camera. Add extra top margin, include no labels or text, and export the result as a clean transparent PNG.
|
|
6194
|
+
Ensure the subject is large enough to fill most of the frame. Use the supplied name, country, and context to guide the character’s appearance.
|
|
6195
|
+
Context: ${JSON.stringify({ name, bio, country, mainCategory, subCategory })}`;
|
|
6196
|
+
|
|
6192
6197
|
// const { first_name, last_name, bio, country, mainCategory, subCategory } = account_obj.account_info;
|
|
6193
|
-
const model = 'gpt-image-1-mini';
|
|
6198
|
+
// const model = 'gpt-image-1-mini';
|
|
6199
|
+
const model = 'chatgpt-image-latest';
|
|
6194
6200
|
const ai_avatar_response = await client.images.edit({
|
|
6195
6201
|
model,
|
|
6196
6202
|
image: image_blob_ret.image_blob,
|
|
6197
6203
|
|
|
6198
|
-
prompt
|
|
6199
|
-
Ensure the subject is large enough to fill most of the frame. Use the supplied name, country, and context to guide the character’s appearance.
|
|
6200
|
-
Context: ${JSON.stringify({ name, bio, country, mainCategory, subCategory })}`,
|
|
6204
|
+
prompt,
|
|
6201
6205
|
background: 'transparent',
|
|
6202
6206
|
});
|
|
6203
6207
|
account_module.record_ai_usage(uid, ai_avatar_response.usage.input_tokens, ai_avatar_response.usage.output_tokens, 'profile avatar', prompt, model, { profile_picture }, account_profile_info);
|