@xuda.io/ai_module 1.1.4763 → 1.1.4764

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.
Files changed (2) hide show
  1. package/index.mjs +8 -6
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -6510,8 +6510,8 @@ const create_ai_agent_image = async function (req, job_id, headers) {
6510
6510
  const image_blob_ret = await get_image_blob_from_downloaded_image(url);
6511
6511
  //////////////////
6512
6512
  imageBase64 = Buffer.from(await image_blob_ret.image_blob.arrayBuffer()).toString('base64');
6513
- // const model = 'chatgpt-image-latest';
6514
- const model = 'gpt-image-1-mini';
6513
+ const model = 'chatgpt-image-latest';
6514
+ // const model = 'gpt-image-1-mini';
6515
6515
  const prompt = `
6516
6516
  Create a futuristic, profile portrait with a transparent background.
6517
6517
  make the character look like the person from the provided image with complete metal face hairless ,
@@ -6544,10 +6544,12 @@ const create_ai_agent_image = async function (req, job_id, headers) {
6544
6544
  imageBase64 = ai_avatar_response.data[0].b64_json;
6545
6545
  account_module.record_ai_usage(uid, ai_avatar_response.usage.input_tokens, ai_avatar_response.usage.output_tokens, 'agent avatar', prompt, model, { ai_agent_id }, account_profile_info);
6546
6546
  console.log('Normalizing final avatar to 1024 with transparent padding...');
6547
- imageBase64 = await normalizeBase64To1024(imageBase64, {
6548
- fit: 'contain', // Preserve aspect ratio, fit within 211x211
6549
- background: { r: 0, g: 0, b: 0, alpha: 0 }, // Transparent background for padding
6550
- });
6547
+ imageBase64 = await normalizeBase64To1024(imageBase64);
6548
+
6549
+ // imageBase64 = await normalizeBase64To1024(imageBase64, {
6550
+ // fit: 'contain', // Preserve aspect ratio, fit within 211x211
6551
+ // background: { r: 0, g: 0, b: 0, alpha: 0 }, // Transparent background for padding
6552
+ // });
6551
6553
 
6552
6554
  const outputBuffer = Buffer.from(imageBase64, 'base64');
6553
6555
  const outputPath = tempOutputPath;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/ai_module",
3
- "version": "1.1.4763",
3
+ "version": "1.1.4764",
4
4
  "description": "Xuda AI Module",
5
5
  "main": "index.mjs",
6
6
  "type": "module",