vibe-openscad

bare/gemma-3-27b / tier-1-stepped-pyramid

success tier 1

bare (google/gemma-3-27b)

render
bare render of tier-1-stepped-pyramid
loading STL…
success 139.5s · 145/282t
SCAD (25 lines)
module pyramid(base_x, base_y, height) {
  difference() {
    cube([base_x, base_y, height]);
    if (base_x > 20 && base_y > 20) {
      translate([base_x/2 - 10, base_y/2 - 10, height])
        cube([base_x-20, base_y-20, height]);
    }
  }
}

module stacked_pyramid(base_x, base_y, height, num_layers) {
  for (i = [0:num_layers - 1]) {
    layer_x = base_x - i * 20;
    layer_y = base_y - i * 20;
    translate([base_x/2 - layer_x/2, base_y/2 - layer_y/2, i * height]) {
      cube([layer_x, layer_y, height]);
    }
  }
}

module three_layered_pyramid() {
  stacked_pyramid(60, 60, 10, 3);
}

three_layered_pyramid();

meta

runIdbare_gemma-3-27b-08267de61f7e-2026-04-29T07-48-56-875Z
matrixIdbare/gemma-3-27b
signature08267de61f7e056e…
provideropenai-self-hosted
modelgoogle/gemma-3-27b
harnessbare
statussuccess
duration139.49s (wallclock: load + prompt eval + generation + network)
TTFT2.277s
generation time136.32s (pure decode, excludes load + prompt eval)
tokens145 in / 282 out
generation tok/s2.1 tok/s (pure decode rate)
wallclock tok/s2.0 tok/s (end-to-end)
createdAt2026-04-29T07:48:56.875Z
gitCommit5f36132a630c
openscadOpenSCAD version 2026.04.27

model metadata (self-hosted)

セルフホスト LLM はクラウドの単一 provider と違い、 実質「(モデル開発者, weight publisher, 量子化)」の組で挙動が決まる。 run 時に LM Studio / Ollama から取得した値:

publishergoogle
typevlm
archgemma3
quantizationQ4_0
max ctx131,072 tok
host GPUNVIDIA GeForce RTX 3090 (Vulkan)
host VRAM24 GB
host CPU12th Gen Intel(R) Core(TM) i9-12900K
host RAM32 GB

prompt

OpenSCAD で、底辺 60mm × 60mm × 高さ 10mm の正方形の板の中央に、それより一回り小さい
40mm × 40mm × 高さ 10mm の板を載せ、さらにその中央に 20mm × 20mm × 高さ 10mm の板を
載せた、3 段の階段状ピラミッドを作ってください。各段は中心を揃えて積み上げます。

完成したコード全体を ```openscad ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。