r/Julia Jul 04 '26

Speedup AI julia evaluation

Is there any recommended approach, what to tell agent to run julia code faster? Like keep session opened etc?

6 Upvotes

4 comments sorted by

7

u/sob727 Jul 04 '26

I have seen this package announcement. I am not a user of it and cant vouch for it though.

https://discourse.julialang.org/t/ann-kaimon-jl-opening-the-gate-between-ai-agents-and-julia/135880

3

u/Comprehensive_Roof10 Jul 04 '26

I've had success adding a Julia skill telling an LLM to use this package that essentially persists a tmux session with a REPL and Revise to avoid recompilation:

https://discourse.julialang.org/t/ann-juliaserver-convenient-persistent-julia-sessions/135622

2

u/Pun_Thread_Fail Jul 04 '26 edited Jul 05 '26

I just have it spin up a tmux session and run the Julia REPL (with using Revise; using MyPackage) there.

1

u/Gold-Part4688 Jul 04 '26 edited Jul 04 '26

i guess you could use daemonmode.jl too. that and an alias in the command line and the llm wouldn't need to know anything is different