vendor_connectors.meshy
Meshy AI - Python SDK for Meshy AI 3D generation API.
Part of vendor-connectors, providing access to Meshy AI’s 3D asset generation API.
Usage:
Functional interface
Section titled “Functional interface”from vendor_connectors.meshy import text3d, image3d, rigging, animate, retexture
# Text to 3Dmodel = text3d.generate("a medieval sword")
# Image to 3Dmodel = image3d.generate("https://example.com/image.png")
# Rig for animationrigged = rigging.rig(model.id)
# Apply animationanimated = animate.apply(rigged.id, animation_id=0)
# Retextureretextured = retexture.apply(model.id, "golden with gems")
# LangChain toolsfrom vendor_connectors.meshy.tools import get_toolstools = get_tools()
# CrewAI toolsfrom vendor_connectors.meshy.tools import get_crewai_toolscrewai_tools = get_crewai_tools()
# MCP serverfrom vendor_connectors.meshy.mcp import create_server, run_serverserver = create_server()run_server(server)Subpackages
Section titled “Subpackages”Submodules
Section titled “Submodules”vendor_connectors.meshy.basevendor_connectors.meshy.connectorvendor_connectors.meshy.modelsvendor_connectors.meshy.animationsvendor_connectors.meshy.riggingvendor_connectors.meshy.retexturevendor_connectors.meshy.loggingvendor_connectors.meshy.image3dvendor_connectors.meshy.animatevendor_connectors.meshy.text3dvendor_connectors.meshy.toolsvendor_connectors.meshy.mcpvendor_connectors.meshy.jobs