-
Notifications
You must be signed in to change notification settings - Fork 799
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add TRIPO3D_AI #81
base: main
Are you sure you want to change the base?
Conversation
WalkthroughThis change integrates support for a new mode, "TRIPO3D_AI", into the Changes
Sequence Diagram(s)sequenceDiagram
participant U as User
participant S as BlenderMCPServer
participant T as Tripo3D API
participant F as Filesystem
U->>S: Request TRIPO3D_AI job creation
S->>T: Call create_rodin_job_tripo3d_ai(text_prompt, images, bbox_condition)
T-->>S: Respond with job details
U->>S: Poll job status request
S->>T: Call poll_rodin_job_status_tripo3d_ai(request_id)
T-->>S: Return job status (model URL or error)
U->>S: Request asset import
S->>T: Verify task status for model download
S->>F: Download asset & manage temporary file
F-->>S: Asset stored and temporary file cleaned up
S-->>U: Return imported asset info (name, type, location, rotation, scale)
Poem
✨ Finishing Touches
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
addon.py (1)
1691-1759
: Asset importing implementation could use minor improvements.The code correctly handles the full flow from status checking to file download and import. However, there are a couple of minor issues identified by static analysis.
- Use a context manager for file opening at line 1703:
- temp_file = tempfile.NamedTemporaryFile( - delete=False, - prefix=request_id, - suffix=".glb", - ) + with tempfile.NamedTemporaryFile( + delete=False, + prefix=request_id, + suffix=".glb", + ) as temp_file: + # Download model file + response = requests.get(status_response["model_url"], stream=True) + response.raise_for_status() + + # Write to temporary file + for chunk in response.iter_content(chunk_size=8192): + temp_file.write(chunk) + + temp_file_name = temp_file.name
- Replace bare except with
contextlib.suppress
at lines 1753-1756:- finally: - # Clean up temporary file - try: - os.unlink(temp_file.name) - except: - pass + finally: + # Clean up temporary file + import contextlib + with contextlib.suppress(Exception): + os.unlink(temp_file_name)🧰 Tools
🪛 Ruff (0.8.2)
1703-1703: Use a context manager for opening files
(SIM115)
1753-1756: Use
contextlib.suppress(Exception)
instead oftry
-except
-pass
Replace with
contextlib.suppress(Exception)
(SIM105)
1755-1755: Do not use bare
except
(E722)
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
addon.py
(6 hunks)
🧰 Additional context used
🪛 Ruff (0.8.2)
addon.py
1703-1703: Use a context manager for opening files
(SIM115)
1753-1756: Use contextlib.suppress(Exception)
instead of try
-except
-pass
Replace with contextlib.suppress(Exception)
(SIM105)
1755-1755: Do not use bare except
(E722)
🔇 Additional comments (6)
addon.py (6)
1317-1318
: Integration point for TRIPO3D_AI looks good.The dispatching pattern consistently matches the existing implementation for other platforms.
1388-1389
: Consistent dispatching implementation for polling.The pattern follows the established code structure for other supported platforms.
1420-1454
: Well-implemented status polling function for TRIPO3D_AI.The implementation appropriately handles API responses and error conditions. I particularly like the way you check for the model URL in multiple possible response locations, making the code robust against potential API response structure changes.
1455-1499
: Comprehensive job creation implementation for TRIPO3D_AI.The code properly validates required parameters, constructs the API request, and handles response processing and error cases. The implementation follows the same pattern as the existing platform integrations, which maintains consistency throughout the codebase.
1564-1565
: Consistent dispatching for asset importing.The pattern matches the established implementation for other platforms.
1870-1870
: UI integration for TRIPO3D_AI completed correctly.The enum addition follows the established pattern and maintains consistency with other platform options.
PR Type
Enhancement
Description
Added support for
TRIPO3D_AI
mode in multiple functions.Implemented
poll_rodin_job_status_tripo3d_ai
to query task status.Added
create_rodin_job_tripo3d_ai
to create 3D model generation tasks.Introduced
import_generated_asset_tripo3d_ai
to fetch and import assets.Changes walkthrough 📝
addon.py
Add TRIPO3D_AI mode and API integrations
addon.py
TRIPO3D_AI
mode handling increate_rodin_job
,poll_rodin_job_status
, andimport_generated_asset
.poll_rodin_job_status_tripo3d_ai
for querying task statusfrom Tripo3D API.
create_rodin_job_tripo3d_ai
for creating 3D model generationtasks via Tripo3D API.
import_generated_asset_tripo3d_ai
for fetching andimporting assets into Blender.
blendermcp_hyper3d_mode
EnumProperty to includeTRIPO3D_AI
.Summary by CodeRabbit