Model Comparison
Model Editorial Structural Class Conf SETL Theme
@cf/meta/llama-4-scout-17b-16e-instruct lite 0.00 ND Neutral 0.90 0.00 Technology Programming
@cf/meta/llama-3.3-70b-instruct-fp8-fast lite 0.00 ND Neutral 0.90 0.00 Tech industry trends
deepseek/deepseek-v3.2-20251201 +0.02 +0.02 Neutral 0.06 0.02 Technical Knowledge Sharing
Section @cf/meta/llama-4-scout-17b-16e-instruct lite @cf/meta/llama-3.3-70b-instruct-fp8-fast lite deepseek/deepseek-v3.2-20251201
Preamble ND ND 0.03
Article 1 ND ND 0.00
Article 2 ND ND 0.00
Article 3 ND ND 0.00
Article 4 ND ND 0.00
Article 5 ND ND 0.00
Article 6 ND ND 0.00
Article 7 ND ND 0.00
Article 8 ND ND 0.00
Article 9 ND ND 0.00
Article 10 ND ND 0.00
Article 11 ND ND 0.00
Article 12 ND ND 0.10
Article 13 ND ND 0.00
Article 14 ND ND 0.00
Article 15 ND ND 0.00
Article 16 ND ND 0.00
Article 17 ND ND 0.00
Article 18 ND ND 0.00
Article 19 ND ND 0.34
Article 20 ND ND 0.00
Article 21 ND ND 0.00
Article 22 ND ND 0.00
Article 23 ND ND 0.00
Article 24 ND ND 0.00
Article 25 ND ND 0.00
Article 26 ND ND 0.06
Article 27 ND ND 0.26
Article 28 ND ND 0.00
Article 29 ND ND 0.00
Article 30 ND ND 0.00
+0.02 Deterministic Programming with LLMs (www.mcherm.com S:+0.02 )
58 points by todsacerdoti 3 days ago | 28 comments on HN | Neutral Editorial · v3.7 · 2026-03-01 07:53:20 0
Summary Technical Knowledge Sharing Neutral
The content is a technical essay discussing deterministic programming approaches with large language models, using examples from mathematics and software development. The essay engages most directly with Article 19 (free expression) through its publication of technical analysis and Article 27 (cultural participation) through creation of intellectual work. Overall, the content demonstrates a neutral stance toward human rights, focusing primarily on technical methodology without explicit human rights advocacy or opposition.
Article Heatmap
Preamble: +0.03 — Preamble P Article 1: 0.00 — Freedom, Equality, Brotherhood 1 Article 2: 0.00 — Non-Discrimination 2 Article 3: 0.00 — Life, Liberty, Security 3 Article 4: 0.00 — No Slavery 4 Article 5: 0.00 — No Torture 5 Article 6: 0.00 — Legal Personhood 6 Article 7: 0.00 — Equality Before Law 7 Article 8: 0.00 — Right to Remedy 8 Article 9: 0.00 — No Arbitrary Detention 9 Article 10: 0.00 — Fair Hearing 10 Article 11: 0.00 — Presumption of Innocence 11 Article 12: +0.10 — Privacy 12 Article 13: 0.00 — Freedom of Movement 13 Article 14: 0.00 — Asylum 14 Article 15: 0.00 — Nationality 15 Article 16: 0.00 — Marriage & Family 16 Article 17: 0.00 — Property 17 Article 18: 0.00 — Freedom of Thought 18 Article 19: +0.34 — Freedom of Expression 19 Article 20: 0.00 — Assembly & Association 20 Article 21: 0.00 — Political Participation 21 Article 22: 0.00 — Social Security 22 Article 23: 0.00 — Work & Equal Pay 23 Article 24: 0.00 — Rest & Leisure 24 Article 25: 0.00 — Standard of Living 25 Article 26: +0.06 — Education 26 Article 27: +0.26 — Cultural Participation 27 Article 28: 0.00 — Social & International Order 28 Article 29: 0.00 — Duties to Community 29 Article 30: 0.00 — No Destruction of Rights 30
Negative Neutral Positive No Data
Aggregates
Editorial Mean +0.02 Structural Mean +0.02
Weighted Mean +0.04 Unweighted Mean +0.03
Max +0.34 Article 19 Min 0.00 Article 1
Signal 31 No Data 0
Volatility 0.08 (Low)
Negative 0 Channels E: 0.6 S: 0.4
SETL +0.02 Editorial-dominant
FW Ratio 52% 38 facts · 35 inferences
Evidence 36% coverage
2M 3L
Theme Radar
Foundation Security Legal Privacy & Movement Personal Expression Economic & Social Cultural Order & Duties Foundation: 0.01 (3 articles) Security: 0.00 (3 articles) Legal: 0.00 (6 articles) Privacy & Movement: 0.03 (4 articles) Personal: 0.00 (3 articles) Expression: 0.11 (3 articles) Economic & Social: 0.00 (4 articles) Cultural: 0.16 (2 articles) Order & Duties: 0.00 (3 articles)
HN Discussion 12 top-level · 10 replies
andyfilms1 2026-02-28 23:57 UTC link
At what point does this just wrap all the way back around to being genetic algorithms?

I'm also reminded of the old software called Formulize, which could take in a set of arbitrary data and find a function that described it. http://nutonian.wikidot.com/

4b11b4 2026-03-01 00:12 UTC link
soon
dataviz1000 2026-03-01 01:05 UTC link
> The Solution is Code-Checking Code

I'm finding code falls into two categories. Code that produces known results and code that produces results that are not known. For example, creating a table with a pagination component with a backend that loads the first 30 rows ordered by date descending from the database on page 1 and the second set of 30 rows on page 2. We know what the code is supposed to output, we know what the result looks like. On the other hand, there is code that does statistical analysis on the 30 rows of data. This is different because we don't know what the result is.

The known result code is easy to use an LLM with. I have a skill that will iterate with an OODA loop — observe, act, and validate. It will in the validate step take screenshots and even without telling it, it will query the database from the CLI, compare the rendered row data to the database data. It will more surprisingly make sure that all the components are responsive and render beautifully on mobile. I'm orders of magnitude past linting here which is solved with Biome.

The statistical analysis is different. The only way I can know for sure of the result is by writing the code painstakingly by hand. The LLM will always produce specious lies. It will fabricate and show me what I want to see, not the truth. This is because until it is written manually by hand, there is no ground truth. In this case, there is no code checking code.

nemo1618 2026-03-01 01:19 UTC link
> But like humans — and unlike computer programs — they do not produce the exact same results every time they are used. This is fundamental to the way that LLMs operate: based on the "weights" derived from their training data, they calculate the likelihood of possible next words to output, then randomly select one (in proportion to its likelihood).

This is emphatically not fundamental to LLMs! Yes, the next token is selected randomly; but "randomly" could mean "chosen using an RNG with a fixed seed." Indeed, many APIs used to support a "temperature" parameter that, when set to 0, would result in fully deterministic output. These parameters were slowly removed or made non-functional, though, and the reason has never been entirely clear to me. My current guess is that it is some combination of A) 99% of users don't care, B) perfect determinism would require not just a seeded RNG, but also fixing a bunch of data races that are currently benign, and C) deterministic output might be exploitable in undesirable ways, or lead to bad PR somehow.

computersuck 2026-03-01 01:48 UTC link
this is a long article that doesn't say much at all. likely generated by AI?

it goes on for ages just to reach the point of "write the tests first"

nkel1028 2026-03-01 01:53 UTC link
How does writing tests, or in the new fashion, stealing tests from somewhere else make anything deterministic?

LLMs really cause diminished reasoning, or in terms that LLM people might understand: Your minds have been quantized!

avaer 2026-03-01 02:41 UTC link
Or, we could just use deterministic seeds in our LLM calls and solve the problem at the root.

Obviously this won't work if your tools are not deterministic, but reproducible builds is a well-trodden discipline.

yogthos 2026-03-01 03:25 UTC link
I'd argue that another key aspect is to break programs up into small independent units that can be verified in isolation, and to compose them into larger programs with contracts between them. I've had a pretty good experience using Claude with a framework where I express the program as a state graph, and each node is treated like a microservice that gets some input and produces some output. Then the workflow engine verifies that the output matches the declared schema and then decides which step to execute next. https://github.com/yogthos/mycelium

As the state travels across the graph, I keep a trace of the steps which were executed, which means that when an error happens, the agent has a lot more information than it normally would, it can see what decision points the code passed through already, it can cross references that with the declared workflow, and quickly find where it screwed up.

The idea of workflow engines has been around for a long time, but they feel too awkward to use when you're writing code by hand. Writing conditional logic directly in the code keeps you in your flow, and having to jump out and declare it in config somewhere feels awkward. Coding agents completely change the dynamic though because they don't have that problem. If the LLM is writing the code, then I can just focus on ensuring the code meets the contract, while the agent can deal with the implementation details.

jrecyclebin 2026-03-01 03:55 UTC link
> There is no need for determinism to guarantee the job will be done identically every time if we only plan to do it once.

So can't you just save the conversation transcript and replay it with the tools? Seems a lot more efficient that regenerating the whole thing. And, also, no risk of branching when a tool reply is slightly different. (Of course, errors can occur on subsequent runs.)

ares623 2026-03-01 05:03 UTC link
Is English deterministic and/or predictable?
StevenThompson 2026-03-01 05:15 UTC link
I wrote a version of this post awhile back that gets into a bit more detail as to HOW to bolt on the determinism.

I'm glad to see others talking about it. One day we'll look back on this era the same way folks look back at the time before we validated inputs.

https://www.stevenathompson.com/effective-vibe-coding-best-p...

zby 2026-03-01 06:55 UTC link
Here is my theory about weaving deterministic code and prompts: https://github.com/zby/llm-do/blob/main/docs/theory.md . Plus a library that realises the unified call space that I propose.

I think co-recursion between prompts and code is crucial, but I also think that the ephemeral nature of code in Recursive Language Models is impending deployment time learning (https://github.com/zby/llm-do/blob/main/kb/notes/deploy-time...).

xyzzy_plugh 2026-03-01 01:15 UTC link
If you extend this line of thinking a lot, given we traditionally author the software, everything kind of boils down to a genetic algorithm.
pavpanchekha 2026-03-01 01:32 UTC link
Deterministic output is incompatible with batching, which in turn is critical to high utilization on GPUs, which in turn is necessary to keep costs low.
jrmg 2026-03-01 03:37 UTC link
LLMs are, fundamentally, compressed lookup tables that map input -> input + next token. Or, If you like, input -> input + list of possible next tokens with probabilities.
aaronbrethorst 2026-03-01 03:56 UTC link
OODA: Observe, Orient, Decide, Act.
willj 2026-03-01 04:05 UTC link
The temperature parameters largely went away when we moved towards reasoning models, which output lots of reasoning tokens before you get to the actual output tokens. I don’t know if it was found that reasoning works better with a higher temperature, or that having separate temperatures for reasoning vs. output wasn’t practical, but that’s my observation of the timing, anyway. And to the other commenter’s point, even a temperature of 0 is not deterministic if the batches are not invariant, which they’re not in production workloads.
galaxy_tx 2026-03-01 04:08 UTC link
The genetic algorithm comparison is actually pretty apt. Generate variations, evaluate fitness, keep the survivors. The main difference is that LLMs have a much richer prior about what "good" looks like, so the search space is dramatically smaller than random mutation.

But it raises an interesting question about where the fitness function comes from. In traditional GAs you define it explicitly. With LLM-generated code, the fitness function is often just "does it pass the tests" - which means the quality of your tests becomes the actual bottleneck, not the quality of the code generation.

I wonder if that shifts the core skill of programming from "write correct code" to "write correct specifications." And if so, is that actually a new problem, or is it the same problem formal methods people have been working on for decades, just wearing a different hat?

mapontosevenths 2026-03-01 05:12 UTC link
This is actually a feature that OpenAI offers via the API. It doesn't work the way you want it to though. It makes it less random, not deterministic and they even warn you of that in the docs.
valenterry 2026-03-01 05:18 UTC link
> This is emphatically not fundamental to LLMs! Yes, the next token is selected randomly; but "randomly" could mean "chosen using an RNG with a fixed seed."

This. Thanks for saying that, because now I don't need to read the article, since if the author doesn't even get that, I'm not interested in the rest.

lioeters 2026-03-01 06:59 UTC link
Aubergine. I'm guessing no one could have predicted that word would be next. If the universe is a deterministic simulation (of what?) that could be run backward and forward predictably, then of course the next word was always going to be "aubergine" with 100% certainty. In that case, all we need is the entire state of the universe to predict the next moment.
CaptainFever 2026-03-01 07:21 UTC link
We really need to add "please don't write comments witch-hunting articles for AI usage" into the guidelines at this rate
Editorial Channel
What the content says
+0.20
Article 19 Freedom of Expression
Medium Advocacy
Editorial
+0.20
SETL
-0.17

Author publishes technical essay expressing opinions on LLM use

+0.20
Article 27 Cultural Participation
Medium Advocacy
Editorial
+0.20
SETL
+0.14

Author creates and shares intellectual work on programming methods

+0.10
Article 12 Privacy
Low Practice
Editorial
+0.10
SETL
0.00

Discussion of injection attacks and data sanitization relates to privacy/security

+0.10
Article 26 Education
Low Framing
Editorial
+0.10
SETL
+0.10

Essay contributes to technical education by explaining programming concepts

+0.05
Preamble Preamble
Low Framing
Editorial
+0.05
SETL
+0.05

Implied support for human dignity through discussion of reliable systems

0.00
Article 1 Freedom, Equality, Brotherhood
Editorial
0.00
SETL
ND

No discussion of human equality, dignity, or rights

0.00
Article 2 Non-Discrimination
Editorial
0.00
SETL
ND

No discussion of non-discrimination

0.00
Article 3 Life, Liberty, Security
Editorial
0.00
SETL
ND

No discussion of life, liberty, or security

0.00
Article 4 No Slavery
Editorial
0.00
SETL
ND

No discussion of slavery or servitude

0.00
Article 5 No Torture
Editorial
0.00
SETL
ND

No discussion of torture or cruel treatment

0.00
Article 6 Legal Personhood
Editorial
0.00
SETL
ND

No discussion of legal recognition

0.00
Article 7 Equality Before Law
Editorial
0.00
SETL
ND

No discussion of equality before law

0.00
Article 8 Right to Remedy
Editorial
0.00
SETL
ND

No discussion of remedies for rights violations

0.00
Article 9 No Arbitrary Detention
Editorial
0.00
SETL
ND

No discussion of arbitrary detention

0.00
Article 10 Fair Hearing
Editorial
0.00
SETL
ND

No discussion of fair trial rights

0.00
Article 11 Presumption of Innocence
Editorial
0.00
SETL
ND

No discussion of presumption of innocence

0.00
Article 13 Freedom of Movement
Editorial
0.00
SETL
ND

No discussion of freedom of movement

0.00
Article 14 Asylum
Editorial
0.00
SETL
ND

No discussion of asylum

0.00
Article 15 Nationality
Editorial
0.00
SETL
ND

No discussion of nationality

0.00
Article 16 Marriage & Family
Editorial
0.00
SETL
ND

No discussion of marriage or family

0.00
Article 17 Property
Editorial
0.00
SETL
ND

No discussion of property rights

0.00
Article 18 Freedom of Thought
Editorial
0.00
SETL
ND

No discussion of freedom of thought or religion

0.00
Article 20 Assembly & Association
Editorial
0.00
SETL
ND

No discussion of assembly or association

0.00
Article 21 Political Participation
Editorial
0.00
SETL
ND

No discussion of political participation

0.00
Article 22 Social Security
Editorial
0.00
SETL
ND

No discussion of social security

0.00
Article 23 Work & Equal Pay
Editorial
0.00
SETL
ND

No discussion of work rights or employment

0.00
Article 24 Rest & Leisure
Editorial
0.00
SETL
ND

No discussion of rest or leisure

0.00
Article 25 Standard of Living
Editorial
0.00
SETL
ND

No discussion of standard of living or health

0.00
Article 28 Social & International Order
Editorial
0.00
SETL
ND

No discussion of social order

0.00
Article 29 Duties to Community
Editorial
0.00
SETL
ND

No discussion of duties to community

0.00
Article 30 No Destruction of Rights
Editorial
0.00
SETL
ND

No discussion of rights destruction

Structural Channel
What the site does
Element Modifier Affects Note
Legal & Terms
Privacy
No privacy policy or cookies banner observed on page
Terms of Service
No terms of service or usage terms observed
Identity & Mission
Mission
Personal blog format, no explicit mission statement
Editorial Code
No editorial standards or fact-checking disclosure
Ownership
Personal blog, author identified as 'mcherm'
Access & Distribution
Access Model +0.10
Article 19 Article 27
Free access to content, no paywall or registration required
Ad/Tracking
No advertising or tracking observed on page
Accessibility
No accessibility features or statements observed
+0.30
Article 19 Freedom of Expression
Medium Advocacy
Structural
+0.30
Context Modifier
+0.10
SETL
-0.17

Blog platform enables free expression; content freely accessible

+0.10
Article 12 Privacy
Low Practice
Structural
+0.10
Context Modifier
0.00
SETL
0.00

No personal data collection observed; simple static page

+0.10
Article 27 Cultural Participation
Medium Advocacy
Structural
+0.10
Context Modifier
+0.10
SETL
+0.14

Blog platform enables sharing of creative work

0.00
Preamble Preamble
Low Framing
Structural
0.00
Context Modifier
0.00
SETL
+0.05

No structural elements directly supporting preamble values

0.00
Article 1 Freedom, Equality, Brotherhood
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements related to human equality

0.00
Article 2 Non-Discrimination
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing discrimination

0.00
Article 3 Life, Liberty, Security
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements supporting these rights

0.00
Article 4 No Slavery
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing slavery

0.00
Article 5 No Torture
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing torture prevention

0.00
Article 6 Legal Personhood
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements supporting legal personality

0.00
Article 7 Equality Before Law
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing legal equality

0.00
Article 8 Right to Remedy
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements providing rights remedies

0.00
Article 9 No Arbitrary Detention
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing detention

0.00
Article 10 Fair Hearing
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements supporting fair trials

0.00
Article 11 Presumption of Innocence
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing criminal justice

0.00
Article 13 Freedom of Movement
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements supporting movement

0.00
Article 14 Asylum
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing asylum

0.00
Article 15 Nationality
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing nationality

0.00
Article 16 Marriage & Family
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements supporting family

0.00
Article 17 Property
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing property

0.00
Article 18 Freedom of Thought
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements supporting religious freedom

0.00
Article 20 Assembly & Association
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements supporting assembly

0.00
Article 21 Political Participation
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements supporting political participation

0.00
Article 22 Social Security
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing social security

0.00
Article 23 Work & Equal Pay
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements supporting work rights

0.00
Article 24 Rest & Leisure
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing rest

0.00
Article 25 Standard of Living
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing living standards

0.00
Article 26 Education
Low Framing
Structural
0.00
Context Modifier
0.00
SETL
+0.10

No structural educational elements

0.00
Article 28 Social & International Order
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing social order

0.00
Article 29 Duties to Community
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing community duties

0.00
Article 30 No Destruction of Rights
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural elements addressing rights protection

Supplementary Signals
How this content communicates, beyond directional lean. Learn more
Epistemic Quality
How well-sourced and evidence-based is this content?
0.74 medium claims
Sources
0.7
Evidence
0.8
Uncertainty
0.6
Purpose
0.9
Propaganda Flags
No manipulative rhetoric detected
0 techniques detected
Emotional Tone
Emotional character: positive/negative, intensity, authority
measured
Valence
+0.3
Arousal
0.4
Dominance
0.7
Transparency
Does the content identify its author and disclose interests?
0.50
✓ Author
More signals: context, framing & audience
Solution Orientation
Does this content offer solutions or only describe problems?
0.64 solution oriented
Reader Agency
0.6
Stakeholder Voice
Whose perspectives are represented in this content?
0.40 2 perspectives
Speaks: individuals
About: corporationinstitutionindividuals
Temporal Framing
Is this content looking backward, at the present, or forward?
present medium term
Geographic Scope
What geographic area does this content cover?
global
Complexity
How accessible is this content to a general audience?
technical medium jargon domain specific
Longitudinal 287 HN snapshots · 31 evals
+1 0 −1 HN
Audit Trail 51 entries
2026-03-01 08:39 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 08:39 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 08:04 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 08:04 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
Technical discussion no rights stance
2026-03-01 07:53 eval_success Evaluated: Neutral (0.04) - -
2026-03-01 07:53 eval Evaluated by deepseek-v3.2: +0.04 (Neutral) 11,424 tokens
2026-03-01 07:44 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 07:44 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 07:39 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 07:39 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 07:09 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 07:09 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
Technical discussion no rights stance
2026-03-01 06:51 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 06:51 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 06:46 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 06:46 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 06:24 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 06:24 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
Technical discussion no rights stance
2026-03-01 06:19 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 06:19 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
Technical discussion no rights stance
2026-03-01 06:01 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 06:01 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 05:56 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 05:56 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 05:34 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 05:34 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
Technical discussion no rights stance
2026-03-01 05:14 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 05:14 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 05:07 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 05:07 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 05:04 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 05:04 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
Technical discussion no rights stance
2026-03-01 04:19 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 04:19 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 04:17 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 04:17 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
Technical discussion no rights stance
2026-03-01 03:30 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 03:30 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 03:29 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 03:29 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
Technical discussion no rights stance
2026-03-01 03:00 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 02:59 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
Technical discussion no rights stance
2026-03-01 02:54 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 02:14 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
Technical discussion no rights stance
2026-03-01 02:09 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
Technical discussion no rights stance
2026-03-01 02:08 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 01:26 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
Technical discussion no rights stance
2026-03-01 01:24 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 00:42 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
Technical discussion no rights stance
2026-03-01 00:39 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral)
reasoning
Editorial on using LLMs in deterministic programming, neutral rights stance
2026-03-01 00:37 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral)
reasoning
Technical discussion no rights stance