CASE FILE / Model & agent routing
I got a rubik's cube to solve itself with @typesafeai 's Jev and it solv…
I got a rubik's cube to solve itself with @typesafeai 's Jev and it solves it like a person does, 94 moves, not the 22 move optimal solution. Jev isn't an LLM, it just answers one question in ~250ms with a probability. so I put the beginner method in code (the one you'd learn on youtube: white cross, corners, middle layer, yellow layer) and at every step Jev just looks at the cube and picks which case it's in. code checks every pick. ~4 seconds of model time total. video is slowed down so you can read it!
Original post
I got a rubik's cube to solve itself with @typesafeai 's Jev and it solves it like a person does, 94 moves, not the 22 move optimal solution. Jev isn't an LLM, it just answers one question in ~250ms with a probability. so I put the beginner method in code (the one you'd learn on youtube: white cross, corners, middle layer, yellow layer) and at every step Jev just looks at the cube and picks which case it's in. code checks every pick. ~4 seconds of model time total. video is slowed down so you can read it!
Chinese translation
我得到了一个魔方,可以用@typesafeai的Jev自行解决,它像人一样解决这个问题,94步,而不是22步的最佳解决方案。 Jev不是LLM,它只是在~ 250 ms内以一定的概率回答一个问题。因此,我将初学者方法放入代码中(您会在YouTube上学到的方法:白色十字、拐角、中间层、黄色层),在每一步中,Jev只是查看立方体并选择它处于哪种情况。代码检查每个选择。 约4秒的模型时间。视频被放慢了,所以你可以阅读它!
What this case shows
- Let JEV choose the model or tool first
- Auto-route on high confidence, escalate otherwise
- This is the most common production pattern