code wiki / _hdl_build / nx_llm_probe.nx

nx_llm_probe.nx

buildroot/runtime/_hdl_build/nx_llm_probe.nx

3610 B76 linesdepth 5pulls 5 transitivereach 0 importersview sourcekind probetopic llm
docsdependenciesstructsconstsfunctions

about

nx_llm_probe.nx -- one-shot probe of the LIVE sovereign LLM seat (127.0.0.1:11434) to MEASURE whether the real trained model can translate a full sentence the 9-word CONNECT lexicon cannot. Honest gate on a real claim: I will not wire the model into CONNECT translation until I have SEEN it produce a real translation. Usage: nx_llm_probe "<instruction>" (defaults to an EN->RU sentence translation) license_tier: ORIGINAL

dependencies 2 imports · 0 importers

nx_syscalls.nx nx_connect.nx nx_llm_probe.nx

imports: nx_syscalls.nxnx_connect.nx

imported by: nobody (leaf or entry point)

call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown

main sys_mmap sys_socket lp_puts sys_write sys_set_socket_timeout sys_mmap ↻ sys_setsockopt sys_munmap nx_connect_bounded nx_fcntl sys_connect sys_mmap ↻ sys_poll lp_cat lp_catn sys_write ↻ sys_read sys_close

structs

none

consts

8const K_MAGIC_8192: i64 = 8192
9const K_MAGIC_16384: i64 = 16384
10const K_MAGIC_65536: i64 = 65536
11const K_MAGIC_65535: i64 = 65535

functions

13func lp_puts(fd: i64, s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} sys_write(fd,s,n); return 0 }
called by 1: main calls 1: sys_write
14func lp_slen(s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} return n }
15func lp_cat(dst: *u8, off: i64, s: *u8) -> i64 { var i: i64=0; while s[i]!=(0 as u8){dst[off+i]=s[i]; i=i+1} return off+i }
called by 1: main
16func lp_catn(dst: *u8, off: i64, v: i64) -> i64
called by 1: main
27func main(argc: i64, argv: *i64) -> i64