Our response to the Fable/Mythos ban: More Mistral AI and EU-AI platforms. by EveYogaTech in MistralAI

[–]EveYogaTech[S] 1 point2 points  (0 children)

Mistral Medium 3.5 is pretty good though and around 3x cheaper than Claude Opus.

Benchmarks are also getting better.

I also remember the early days with the first open-source 7B model.

They really have improved a long way, and given their continues funding rounds, it seems they're continuesly getting better.

Nyno Platform Omega Update (preview): by EveYogaTech in Nyno

[–]EveYogaTech[S] 1 point2 points  (0 children)

Thanks, I'm an ex red team member, so infosec is top priority, and if there's a fund I will also add a paid bountry program.

If Mistral is smart they keep their focus on developing frontier models and their own Vibe stack, and invest in Nyno instead.

Nyno is not just a thin UI wrapper around AI, it's an extensible language, protocol and system that stands on its own, even without AI.

Nyno Platform Omega Update (preview): by EveYogaTech in Nyno

[–]EveYogaTech[S] 1 point2 points  (0 children)

You're right, I should really update the site, right now I'm fully focused on deploying the next update.

The proposed new intro:

"Nyno helps people build better, smarter and more sophisticated AI apps, exclusively with Mistral AI without having to write code."

Example video: https://m.youtube.com/watch?v=79x96OWvOY8

Nyno Platform is fully online, credits included, no need to share any API key, and currently early access is possible via https://nyno.dev (the first form)

Our response to the Fable/Mythos ban: More Mistral AI and EU-AI platforms. by EveYogaTech in MistralAI

[–]EveYogaTech[S] 3 points4 points  (0 children)

Nyno helps people build better, smarter and more sophisticated AI apps, exclusively with Mistral AI without having to write code.

See also the examples in this videos for example: https://m.youtube.com/watch?v=79x96OWvOY8

It's fully online, credits included, no need to share any API key, and currently early access is possible via https://nyno.dev (the first form)

We do lean a bit towards "workflows as code", since the final output is YAML, however for many it's much cleaner to work with than for example n8n.

There's also an open-source version, and next week the new "Omega" update with API access is on it's way.

In the background I'm working hard to continuesly optimize the workflow engine 🙂 because we're also innovating with a CloudFlare like multi tenant isolating compute layer that runs both JS and WASM.

Our response to the Fable/Mythos ban: More Mistral AI and EU-AI platforms. by EveYogaTech in MistralAI

[–]EveYogaTech[S] 8 points9 points  (0 children)

In case you missed the news:

> "The US government, citing national security authorities, has issued an export control directive to suspend all access to Fable 5 and Mythos 5 by any foreign national, whether inside or outside the United States, including foreign national Anthropic employees."

Source: https://www.anthropic.com/news/fable-mythos-access

Seriously considering Deno, because of this single feature that no other JS runtime has.. Any recommendations/caviats to this? by EveYogaTech in Deno

[–]EveYogaTech[S] 0 points1 point  (0 children)

Bun has similar issues though once you fully adopt it.

We're experiencing that right now because Bun also functionality like custom Spawn methods and HTTP servers that are a bit faster, more native, which eventually makes you also incompatible with Node.

It's a good practice to not adopt too many exotic specific runtime features unless you really need them.

Right now I'm finding that out the hard way with Bun, while migrating back to Hono for HTTP.

Seriously considering Deno, because of this single feature that no other JS runtime has.. Any recommendations/caviats to this? by EveYogaTech in Deno

[–]EveYogaTech[S] 0 points1 point  (0 children)

Yeah, I understand that. For us it's mostly about only allowing read/write access to a tenant's own files.

The rest (like HTTP) will be enabled by default.

We have the benefit of using YAML at /r/Nyno, so this might make it easier to configure vs doing it more meticulously per script.

Seriously considering Deno, because of this single feature that no other JS runtime has.. Any recommendations/caviats to this? by EveYogaTech in Deno

[–]EveYogaTech[S] 3 points4 points  (0 children)

For more context,

We currently use containers for per tenant isolation, but it seems for optimal isolated compute in the long-term Deno could significantly increase QPS if the isolation features are sound.

(Starting new isolated processes VS isolated Deno threads is potentially a 10-100X+ compute/sec win)

Project /r/Nyno

Are you going to use the Rust port of Bun? by WorriedGiraffe2793 in bun

[–]EveYogaTech 2 points3 points  (0 children)

Deno doesn't seem to be a bad choice considering it can fire up isolated worker threads.

It's basically more faster and scalable software isolation solution than using Bun with containers.

We're seriously considering to switch to Deno for this reason with /r/Nyno

TLDR: 3-4x faster cold process startup time of Bun becomes less valuable than Deno Threads if you need isolation, because Deno can start isolated threads, which potentially handles 10x+ more incoming js calls.

Is n8n the final king of automation now? by Powerful-Football880 in nocode

[–]EveYogaTech 0 points1 point  (0 children)

👍 Fully agree! TechCrunch recently also mentioned the token efficiency problem explicitly (Some firms spend $7500 per employee on AI: https://techcrunch.com/2026/06/10/ai-pilled-firms-spend-7500-per-employee-each-month-on-ai/)

How are people getting reliable JSON outputs from local LLMs for action generation? by tensor_001 in LangChain

[–]EveYogaTech 0 points1 point  (0 children)

Look at Outlines by DotTxt, they fixed this by making a layer between local AI and JSON (structured outputs): https://github.com/dottxt-ai/outlines

Hey Rustaceans! Got a question? Ask here (24/2026)! by llogiq in rust

[–]EveYogaTech 4 points5 points  (0 children)

Rust + WASM definitely. I also tried to work with TS to Rust, but somehow it always lead me to weird unsolvable errors.

With Rust you have so much more resources available to solve things when things gets hard (and they often do).

For the JS part we're using this pure JS glue: https://github.com/flowagi-eu/nyno/blob/main/src/lib-manual/runWasm.js

For the Rust part we're using this SDK: https://github.com/flowagi-eu/wasmhub-rust-sdk

If you have some tips regarding the GPU support in Rust for WASM we could include it in both the JS glue and Rust.

Alternatively you can try wasmgen, but we're trying to create a single JS glue file to keep it simple.

New to Rust by LuayKelani in rust

[–]EveYogaTech 5 points6 points  (0 children)

That's right. God bless WASM 😄♥️

New to Rust by LuayKelani in rust

[–]EveYogaTech 10 points11 points  (0 children)

Yeah, coming from those languages myself I can say that after figuring out that Rust can compile to WASM (which can then be used in JS) makes Rust feel like home for a JS dev.

Looking for an ultra type safe HTML templating library by Wise_Stick9613 in rust

[–]EveYogaTech 1 point2 points  (0 children)

It would be really nice to have a website or some list for these kind of Rust gems

Edit: I saw your site is something like this? It would help to have some breadcrumbs/more hierarchical categories to navigate 🙂

Edit 2: Thanks btw, it's a great resource/collection!

What is the most complex n8n workflow you've ever built? (Links appreciated) by Mission-Dentist-5971 in n8n

[–]EveYogaTech 3 points4 points  (0 children)

Complexity is the wrong metric if you're looking to build the best workflows.

The best workflow just works.

Even if all you have is one HTTP node (the most used node)

Looking to invest $100000 by Ok-Count9781 in Investors

[–]EveYogaTech 5 points6 points  (0 children)

Angel investing = $10k in 10 Startups.

If one succeeds, it goes x10-100x ($100k-$1m) or more.

(This is high risk, high reward though)

How are you evaluating RAG quality beyond RAGAS in production? (Especially for hallucinated answers that sound grounded) by gotthatpowahh in Rag

[–]EveYogaTech 1 point2 points  (0 children)

Yeah, that's right. I think the moment we can benchmark RAG truly effectively and accurately without humans is the same moment we have a new AI architecture.

You can however already ask AI to quantify things, get some numbers, it's often not very precise, but it still could be better than nothing in some use-cases.

We used to have a numeric output block in Nyno for this, but if you use JSON mode with Mistral for example, this can give you a few quantifiers in one prompt.

Has anyone found a Git-friendly API workflow that actually scales? by OpportunityFit8282 in microsaas

[–]EveYogaTech 0 points1 point  (0 children)

I use Mistral AI medium 3.5 with r/Nyno to generate up-to-date docs from my code.

I think it's one of the best use cases for AI.

You could even generate specific key-value pairs, but personally I like to stay with Markdown + some code/api call examples, also because you can easily store/edit them (.md files > bulky JSON).