+0.03 Woxi: Wolfram Mathematica Reimplementation in Rust (github.com S:+0.02 )
299 points by adamnemecek 3 days ago | 120 comments on HN | Neutral Product · v3.7 · 2026-03-01 07:35:57 0
Summary Knowledge Sharing Neutral
The GitHub repository hosts an open source reimplementation of Wolfram Language/Mathematica in Rust. Content primarily engages Article 27 (cultural/scientific participation) and Article 19 (expression/information sharing) through its open source model, with mild positive signals for technical education (Article 26). Most human rights provisions receive neutral evaluation as the technical content does not explicitly address them.
Article Heatmap
Preamble: 0.00 — Preamble P Article 1: +0.05 — Freedom, Equality, Brotherhood 1 Article 2: +0.05 — 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.02 — 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.05 — Property 17 Article 18: 0.00 — Freedom of Thought 18 Article 19: +0.45 — 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.05 — Work & Equal Pay 23 Article 24: 0.00 — Rest & Leisure 24 Article 25: +0.15 — Standard of Living 25 Article 26: +0.25 — Education 26 Article 27: +0.45 — 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.03 Structural Mean +0.02
Weighted Mean +0.07 Unweighted Mean +0.05
Max +0.45 Article 19 Min -0.05 Article 17
Signal 31 No Data 0
Volatility 0.12 (Medium)
Negative 1 Channels E: 0.6 S: 0.4
SETL +0.07 Editorial-dominant
FW Ratio 54% 40 facts · 34 inferences
Evidence 24% coverage
3M 28L
Theme Radar
Foundation Security Legal Privacy & Movement Personal Expression Economic & Social Cultural Order & Duties Foundation: 0.03 (3 articles) Security: 0.00 (3 articles) Legal: 0.00 (6 articles) Privacy & Movement: 0.01 (4 articles) Personal: -0.02 (3 articles) Expression: 0.15 (3 articles) Economic & Social: 0.05 (4 articles) Cultural: 0.35 (2 articles) Order & Duties: 0.00 (3 articles)
HN Discussion 16 top-level · 19 replies
adius 2026-02-25 19:53 UTC link
Hi, I'm the main developer. We're steadily getting closer to the next release which will support most features of Mathematica 1.0 plus some of the most popular newer functions (> 900 overall!). AMA!
the__alchemist 2026-02-28 15:40 UTC link
I love Rust for mathematical and scientific tasks (I am building the structural bio crate infrastructure), and I love Mathematica and have a personal sub. I should be the audience, but... What makes Mathematica great, IMO, is the polish and overall experience created by consistent work with applications in mind over decades. So, I look at this project with skepticism regarding its utility.
downboots 2026-02-28 15:45 UTC link
Great! Math tools for everyone.

what's stopping some Mathematica employee from taking the source code and having an agent port it. Or even reconstruction from the manual. Who owns an algorithm?

Will everything get copied eventually?

fnord77 2026-02-28 15:55 UTC link
vibe coded?
WillAdams 2026-02-28 16:14 UTC link
For folks who are considering passing, note that there is a "Jupyter Lite" mode in addition to "Woxi Studio" --- seems very promising and the former addressed my first concern out-the-gate.
esafak 2026-02-28 16:30 UTC link
I wonder if it would make a good Zeppelin interpreter. https://zeppelin.apache.org/
anandijain 2026-02-28 16:51 UTC link
This is cool! I've always wanted a polished kernel on the terminal. I spent a lot of time a few years ago writing my own Wolfram Kernel. It was a blast to understand how a pattern matching (symbolic) language is implemented.

https://github.com/anandijain/cas8.rs

singularity2001 2026-02-28 18:11 UTC link
Is the syntax for symbolic computation already near optimal or should something be rethought and redone?
oofbey 2026-02-28 18:20 UTC link
AGPL licensed. An interesting choice. Author really doesn’t want Wolfram to use it??
peterus 2026-02-28 18:55 UTC link
I regularly use Mathematica for working with symbolic expressions (for its DSolve and transfer function stuff) and it is way more maintainable and elegant to have fractions, symbols and powers rendered in math mode instead of having to deal with a text only representation. Are there any front ends (either custom or somehow extending jupyter) for this project which recreate this experience?
samwillis 2026-02-28 18:56 UTC link
Have you considered doing property tests with Mathematica as an oracle?

An ai based development workflow with a concrete oracle works very well. You still need the research and planing to solve things in a scalable way, but it solves the "are the tests correct" issue.

What we've done is pull out failing property tests as a unit tests, makes regression testing during the agentic coding loop much more efficient.

Grosvenor 2026-02-28 19:11 UTC link
My Bona fides: I've written my own Mathematica clone at least twice, maybe three times. Each time I get it parsing expressions and doing basic math, getting to basic calculus. Then I look up the sheer cliff face in front of me and think better of the whole thing.

There is an architectural flaw in Woxi that will sink it hard. Looking through the codebase things like polynomials are implemented in the rust code, not in woxilang. This will kill you long term.

The right approach is to have a tiny core interpreter, maybe go to JIT at some point if you can figure that out. Then implement all the functionality in woxilang itself. That means addition and subtraction, calculus, etc are term rewriting rules written in woxilang, not rust code.

This frees you up in the interpreter. Any improvements you make there will immediately show up over the entire language. It's also a better language to implement symbolic math in than rust.

It also means contributors only need to know one language: woxilang. No need to split between rust and woxilang.

LowLevelKernel 2026-02-28 20:53 UTC link
Many Wolfram language algorithms are proprietary right?
evanb 2026-02-28 23:03 UTC link
> The initial focus is to implement a subset of the Wolfram Language so that it can be used for CLI scripting and notebooks.

If you have Mathematica installed you can write CLI scripts and notebooks.

asdfe3r343 2026-03-01 01:58 UTC link
How did claude code became contributor?
unexpectedtrap 2026-03-01 05:58 UTC link
Glad to see Rust project under AGPL-3.0. I wish to see more Rust projects under (A)GPL, because (A)GPL is rare in the Rust community for some reason.
apetresc 2026-02-28 14:42 UTC link
What percentage of the overall code was written primarily by agents?
muizelaar 2026-02-28 14:43 UTC link
How does it compare to mathics?

How close is it to being able to run rubi: https://rulebasedintegration.org/?

cs702 2026-02-28 14:52 UTC link
Thank you for sharing this on HN.

It's a worthwhile effort. If successful, Woxi can enable a large mass of scientists and engineers who don't have access to Mathematica to run legacy code written for it. Also, Woxi would give those scientists and engineers who regularly use Mathematica a non-proprietary, less restrictive alternative, which many of them would welcome.

How does Woxi compare to other "clean-room implementations"[a] of the same language?

--

[a] Please check with a lawyer to make sure you won't run into legal or copyright issues.

utopiah 2026-02-28 15:32 UTC link
Interesting, thanks for sharing. Naive question as I'm not familiar with Mathematica much (but aware of it and Wolfram Alpha and related tools), how does it compare to e.g. Jupyter or Julia or maybe another language (with its framework) that might be even closer?
amelius 2026-02-28 15:45 UTC link
Yeah, the Mathematica language is the least interesting aspect of the Mathematica system. Closely followed by the interactive notebooks.
adius 2026-02-28 16:09 UTC link
Sure, but you've got to start somewhere! And with the amount of progress I was able to make in just a few weeks, I'm very optimistic that the polish will come sooner rather than later.
adius 2026-02-28 16:21 UTC link
According to https://en.wikipedia.org/wiki/Lotus_Development_Corp._v._Bor...., a software clone does not infringe software copyright. So yeah, I'd guess sooner or later everything is going be cloned …
MengerSponge 2026-02-28 16:21 UTC link
> what's stopping some employee from something like Mathematica from taking the source code and having an agent port it to open source

Laws against theft. Also the same reason employees don't release the code on pastebin or something.

> Who owns an algorithm?

The org or person who was granted the software patent. https://en.wikipedia.org/wiki/Software_patent

> Will everything get copied eventually?

If we're lucky. More likely everything bitrots as technical capabilities are lost. Slowly at first, then quickly.

adius 2026-02-28 16:25 UTC link
Such a massive undertaking would be almost impossible without AI agents, so yeah, they help me. But with around 5000 tests, they are actually helping to improve the software quality!
egl2020 2026-02-28 16:30 UTC link
There's a mystique around Mathematica's math engine. Is this groundless, or will you eventually run into problems getting correct, identical answers -- especially for answers that Mathematic derives symbolically? The capabilities and results of the computer algebra systems that I've used varied widely.
rustyhancock 2026-02-28 16:38 UTC link
Similarly I'm not sure Octave ever really got that polish to compete with MATLAB.

SPSS is hilariously painful to use. Still it's only losing ground ever so slowly. PSPP remains almost unheard of among SPSS core users.

adius 2026-02-28 16:52 UTC link
Oh cool, haven't heard of this before. Could be a good fit - I'll have to try it out some day!
adius 2026-02-28 18:27 UTC link
Why should I want them to use it?
adius 2026-02-28 19:32 UTC link
Mh, I thought about this a little and came actually to exactly the opposite conclusion: Implement as much as possible in Rust to get the fastest code possible. Do you have any more insights why this should not be possible / unsustainable?
0x3f 2026-02-28 19:32 UTC link
Switching out to an interpreted language has got to be anathema to a rewrite-it-in-Rust project
drnick1 2026-02-28 19:34 UTC link
Half-assed reimplementations of existing software (often in the name of "memory safety") is what the Rust community is best known for.
lejalv 2026-02-28 20:07 UTC link
Maybe http://texmacs.org would fit here!
nextaccountic 2026-02-28 20:42 UTC link
implementing addition in woxilang itself?? this gotta be terribly slow. am i missing something?
porcoda 2026-02-28 21:08 UTC link
I noticed the same thing, having also written an interpreter for the Wolfram language that focused on the core rule/rewriting/pattern language. At its heart it’s more or less a Lisp-like language where the core can be quite small and a lot of the functionality built via pattern matching and rewriting atop that. Aside from the sheer scale of WL, I ended up setting aside my experiments replicating it when I did performance comparisons and realized how challenging it would be to not just match WL in functionality but performance.

Woxi reminds me of some experiments I did to see how far vibe coding could get me on similar math and symbolic reasoning tools. It seems like unless you explicitly and very actively force a design with a small core, the models tend towards building out a lot of complex, hard-coded logic that ultimately is hard to tune, maintain, or reason about in terms of correctness.

Interesting exercise with woxi in terms of what vibe coding can produce. Not sure about the WL implementation though.

(For context, I write compiler/interpreter tools for a living - have been for a couple decades)

Editorial Channel
What the content says
+0.30
Article 27 Cultural Participation
Medium Coverage Practice
Editorial
+0.30
SETL
+0.17

Open source project enables participation in cultural life and scientific advancement.

+0.20
Article 19 Freedom of Expression
Medium Coverage
Editorial
+0.20
SETL
-0.17

Open source repository enables sharing of technical knowledge and expression.

+0.20
Article 26 Education
Medium Coverage
Editorial
+0.20
SETL
+0.20

Open source code repository supports technical education and knowledge sharing.

+0.10
Article 23 Work & Equal Pay
Low Framing
Editorial
+0.10
SETL
+0.10

Open source collaboration model supports voluntary work and contribution.

0.00
Preamble Preamble
Low
Editorial
0.00
SETL
ND

No observable mention of human dignity, rights, or foundational principles in the technical repository description.

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

No mention of human equality, dignity, or rights.

0.00
Article 2 Non-Discrimination
Low
Editorial
0.00
SETL
ND

No discussion of discrimination or equal rights protection.

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

No mention of life, liberty, or security of person.

0.00
Article 4 No Slavery
Low
Editorial
0.00
SETL
ND

No mention of slavery or servitude.

0.00
Article 5 No Torture
Low
Editorial
0.00
SETL
ND

No mention of torture or cruel treatment.

0.00
Article 6 Legal Personhood
Low
Editorial
0.00
SETL
ND

No mention of legal recognition or personhood.

0.00
Article 7 Equality Before Law
Low
Editorial
0.00
SETL
ND

No mention of equal protection or non-discrimination.

0.00
Article 8 Right to Remedy
Low
Editorial
0.00
SETL
ND

No mention of effective remedy or rights protection.

0.00
Article 9 No Arbitrary Detention
Low
Editorial
0.00
SETL
ND

No mention of arbitrary detention or exile.

0.00
Article 10 Fair Hearing
Low
Editorial
0.00
SETL
ND

No mention of fair trial or public hearing.

0.00
Article 11 Presumption of Innocence
Low
Editorial
0.00
SETL
ND

No mention of presumption of innocence or criminal procedure.

0.00
Article 12 Privacy
Low
Editorial
0.00
SETL
ND

No mention of privacy, home, or correspondence.

0.00
Article 13 Freedom of Movement
Low
Editorial
0.00
SETL
ND

No mention of freedom of movement or residence.

0.00
Article 14 Asylum
Low
Editorial
0.00
SETL
ND

No mention of asylum or persecution.

0.00
Article 15 Nationality
Low
Editorial
0.00
SETL
ND

No mention of nationality or citizenship rights.

0.00
Article 16 Marriage & Family
Low
Editorial
0.00
SETL
ND

No mention of marriage, family, or consent.

0.00
Article 17 Property
Low
Editorial
0.00
SETL
ND

No mention of property ownership or intellectual property.

0.00
Article 18 Freedom of Thought
Low
Editorial
0.00
SETL
ND

No mention of thought, conscience, or religion.

0.00
Article 20 Assembly & Association
Low
Editorial
0.00
SETL
ND

No mention of assembly or association.

0.00
Article 21 Political Participation
Low
Editorial
0.00
SETL
ND

No mention of political participation or government.

0.00
Article 22 Social Security
Low
Editorial
0.00
SETL
ND

No mention of social security or economic rights.

0.00
Article 24 Rest & Leisure
Low
Editorial
0.00
SETL
ND

No mention of rest, leisure, or working hours.

0.00
Article 25 Standard of Living
Low
Editorial
0.00
SETL
ND

No mention of standard of living, health, or welfare.

0.00
Article 28 Social & International Order
Low
Editorial
0.00
SETL
ND

No mention of social order or rights protection.

0.00
Article 29 Duties to Community
Low
Editorial
0.00
SETL
ND

No mention of duties, community, or rights limitations.

0.00
Article 30 No Destruction of Rights
Low
Editorial
0.00
SETL
ND

No mention of rights destruction or interpretation.

Structural Channel
What the site does
+0.30
Article 19 Freedom of Expression
Medium Coverage
Structural
+0.30
Context Modifier
+0.20
SETL
-0.17

GitHub platform structure facilitates information sharing and collaboration.

+0.20
Article 27 Cultural Participation
Medium Coverage Practice
Structural
+0.20
Context Modifier
+0.20
SETL
+0.17

Repository structure supports sharing and building upon technical work.

0.00
Preamble Preamble
Low
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural features related to human rights principles visible on this page.

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

GitHub platform provides equal access to code repositories, but no specific structural signals on this page.

0.00
Article 2 Non-Discrimination
Low
Structural
0.00
Context Modifier
+0.05
SETL
ND

Standard GitHub interface with no observable discriminatory features.

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

No structural features related to security rights.

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

No structural signals related to anti-slavery.

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

No structural features related to protection from torture.

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

No structural recognition features.

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

Standard GitHub interface without discriminatory features.

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

No structural remedy mechanisms.

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

No structural detention-related features.

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

No structural features related to fair hearings.

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

No structural criminal justice features.

0.00
Article 12 Privacy
Low
Structural
0.00
Context Modifier
+0.02
SETL
ND

Standard GitHub privacy interface with no page-specific signals.

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

No structural movement-related features.

0.00
Article 14 Asylum
Low
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural asylum features.

0.00
Article 15 Nationality
Low
Structural
0.00
Context Modifier
0.00
SETL
ND

No structural nationality features.

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

No structural family-related features.

0.00
Article 17 Property
Low
Structural
0.00
Context Modifier
-0.05
SETL
ND

Repository shows open source project with license information.

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

No structural features supporting freedom of thought.

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

No structural features supporting assembly or association.

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

No structural democratic participation features.

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

No structural social security features.

0.00
Article 23 Work & Equal Pay
Low Framing
Structural
0.00
Context Modifier
0.00
SETL
+0.10

No specific structural employment features.

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

No structural features related to rest or leisure.

0.00
Article 25 Standard of Living
Low
Structural
0.00
Context Modifier
+0.15
SETL
ND

Standard GitHub interface with no health-related features.

0.00
Article 26 Education
Medium Coverage
Structural
0.00
Context Modifier
+0.15
SETL
+0.20

No specific structural education features beyond platform access.

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

No structural features related to social order.

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

No structural features related to duties or limitations.

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

No structural features related to rights interpretation.

Supplementary Signals
How this content communicates, beyond directional lean. Learn more
Epistemic Quality
How well-sourced and evidence-based is this content?
0.80 low claims
Sources
0.8
Evidence
0.7
Uncertainty
0.9
Purpose
1.0
Propaganda Flags
No manipulative rhetoric detected
0 techniques detected
Emotional Tone
Emotional character: positive/negative, intensity, authority
measured
Valence
+0.2
Arousal
0.1
Dominance
0.4
Transparency
Does the content identify its author and disclose interests?
0.33
✓ Author
More signals: context, framing & audience
Solution Orientation
Does this content offer solutions or only describe problems?
0.88 solution oriented
Reader Agency
0.8
Stakeholder Voice
Whose perspectives are represented in this content?
0.20 1 perspective
Speaks: individuals
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 high jargon domain specific
Longitudinal 487 HN snapshots · 59 evals
+1 0 −1 HN
Audit Trail 79 entries
2026-03-01 08:26 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 08:26 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-03-01 08:17 credit_exhausted Credit balance too low, pausing provider for 30 min - -
2026-03-01 07:54 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 07:54 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-03-01 07:49 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 07:49 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-03-01 07:35 eval_success Evaluated: Neutral (0.07) - -
2026-03-01 07:35 eval Evaluated by deepseek-v3.2: +0.07 (Neutral) 10,605 tokens
2026-03-01 07:32 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 07:32 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-03-01 07:04 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 07:04 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
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
ED: Neutral tech project, no explicit rights discussion
2026-03-01 06:13 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 06:13 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
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
ED: Neutral tech project, no explicit rights discussion
2026-03-01 05:32 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 05:32 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-03-01 05:22 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 05:22 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-03-01 05:01 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 05:01 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-03-01 04:32 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 04:32 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-03-01 04:11 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 04:11 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-03-01 03:54 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 03:54 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-03-01 03:25 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 03:25 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-03-01 03:20 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 03:20 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-03-01 03:08 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 03:08 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-03-01 02:49 eval_success Lite evaluated: Neutral (0.00) - -
2026-03-01 02:49 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-03-01 02:26 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-03-01 02:06 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-03-01 01:40 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-03-01 01:23 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-03-01 01:03 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-03-01 00:36 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-03-01 00:10 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-03-01 00:05 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 23:48 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 23:09 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 23:03 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 22:14 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 22:09 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 22:09 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 22:04 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 21:25 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 21:17 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 20:34 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 20:27 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 19:47 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 19:46 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 19:05 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 19:05 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 18:59 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 18:57 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 18:28 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 18:26 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 18:21 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 18:05 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 18:00 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 17:55 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 17:39 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 17:30 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 17:26 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 17:14 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 16:58 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 16:51 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral) 0.00
reasoning
PR tech tutorial
2026-02-28 16:31 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral) 0.00
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 16:26 eval Evaluated by llama-4-scout-wai: 0.00 (Neutral)
reasoning
ED: Neutral tech project, no explicit rights discussion
2026-02-28 16:24 eval Evaluated by llama-3.3-70b-wai: 0.00 (Neutral)
reasoning
PR tech tutorial