code wiki / _hdl_build / nx_llm_probe.nx
nx_llm_probe.nx
buildroot/runtime/_hdl_build/nx_llm_probe.nx
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
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
structs
| none |
consts
| 8 | const K_MAGIC_8192: i64 = 8192 |
| 9 | const K_MAGIC_16384: i64 = 16384 |
| 10 | const K_MAGIC_65536: i64 = 65536 |
| 11 | const K_MAGIC_65535: i64 = 65535 |
functions
| 13 | func 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 } |
| 14 | func lp_slen(s: *u8) -> i64 { var n: i64=0; while s[n]!=(0 as u8){n=n+1} return n } |
| 15 | func 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 |
| 16 | func lp_catn(dst: *u8, off: i64, v: i64) -> i64 called by 1: main |
| 27 | func main(argc: i64, argv: *i64) -> i64 |