Skip to content

ai_deepseek_text_editor-1.0.2

Compare
Choose a tag to compare
@jer-nc jer-nc released this 01 Feb 00:11
· 7 commits to main since this release
efcaa13

DeepSeek Blender Addon v1.0.2 Release Notes

New Features 🚀

  • Real-Time Streaming Support
    Experience live code generation with streaming responses directly in Blender's text editor
  • Dual-Model Configuration
    Added separate model selection for error fixing (model_name_fix_errors) to complement deepseek-reasoner
  • AI Reasoning Visualization
    Integrated deepThink process showing AI's thought process as Python comments

Improvements ✨

  • Enhanced Context Awareness
    Automatic scene analysis now includes:
    • Blender version & render engine
    • Object inventory (meshes, cameras, lights)
    • Selection context & render settings
    • Detailed technical specs for all scene elements
  • Smart Response Cleaning
    New regex filters for cleaner code output:
    response = re.sub(r'\bNone\b', '', response)
    response = re.sub(r'```\w*\s*', '', response, flags=re.MULTILINE)
  • Threaded Operations
    Background processing with Queue system for smooth UI interaction

Configuration Changes ⚙️

  • Added model_name_fix_errors preference for error correction workflows
  • Expanded prompt templating with new placeholders:
    "{code_context}"  # Current script state
    "{scene_context}" # Full scene analysis