@xuda.io/ai_module 1.1.4762 → 1.1.4763

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 +4 -1
  2. package/package.json +1 -1
package/index.mjs CHANGED
@@ -6544,7 +6544,10 @@ 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);
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
+ });
6548
6551
 
6549
6552
  const outputBuffer = Buffer.from(imageBase64, 'base64');
6550
6553
  const outputPath = tempOutputPath;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xuda.io/ai_module",
3
- "version": "1.1.4762",
3
+ "version": "1.1.4763",
4
4
  "description": "Xuda AI Module",
5
5
  "main": "index.mjs",
6
6
  "type": "module",