Package Exports
- @0xretrodev/meshifai
- @0xretrodev/meshifai/src/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@0xretrodev/meshifai) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
MeshifAI
AI-powered tools for 3D model generation
Installation
npm install @0xretrodev/meshifaiUsage
Text to 3D Model
MeshifAI supports generating both textured and untextured 3D models from text prompts.
import meshifai from '@0xretrodev/meshifai';
// Generate an untextured model (faster and more reliable)
const result = await meshifai.textTo3d('A red apple');
console.log(`Download URL: ${result.modelUrl}`);
// Generate an untextured model with high resolution (better quality, slower)
const highResResult = await meshifai.textTo3d('A red apple', {
highRes: true
});
console.log(`Download URL: ${highResResult.modelUrl}`);
// Generate a textured model with PBR materials
const texturedResult = await meshifai.textTo3d('A red apple', {
textured: true
});
console.log(`Download URL: ${texturedResult.modelUrl}`);
// Generate a high-quality textured model by increasing polygon count
const highQualityResult = await meshifai.textTo3d('A red apple', {
textured: true,
polygons: 50000 // Default is 25000, higher = better quality
});
console.log(`Download URL: ${highQualityResult.modelUrl}`);Check API Availability
You can check the availability of MeshifAI's services before making requests:
// Check service availability
const availability = await meshifai.checkAvailability();
console.log(`Textured API available: ${availability.textured}`);
console.log(`Untextured API available: ${availability.untextured}`);Model Types
Untextured Models
- Faster generation (typically 5-15 seconds)
- Simple geometry without materials
- Quality control with the
highResparameter:false(default): Standard quality, faster generationtrue: High resolution, better quality but slower generation
- Reliable for basic shapes and prototyping
Textured Models (PBR)
- Includes physically-based rendering materials
- Much more detailed and realistic appearance
- Longer generation time (typically 60-180 seconds)
- Quality can be adjusted with the
polygonsparameter - Great for final assets and presentations
- Can be unreliable at times
Model Format
The generated 3D models are in .glb format (GL Transmission Format Binary), which is widely supported by:
- 3D modeling software like Blender
- Game engines like Unity and Unreal
- Web-based 3D viewers
- AR/VR applications
API Parameters
Untextured Models
highRes(boolean, default:false): Enable high-resolution mode for better quality
Textured Models
textured(boolean): Set totrueto generate textured modelspolygons(number, default:25000): Higher values produce better quality
Future Services
More AI-powered 3D services coming soon!
License
MIT
Support
For support requests, please contact us or open an issue.