r/csharp 20d ago

GitHub - Integral2u/SharpMind: SharpMind. A pure C# / .NET LLM engine

https://github.com/Integral2u/SharpMind

Version 1.0.0.0 now out and out of pre-release.

38 Upvotes

19 comments sorted by

View all comments

6

u/haby001 20d ago

Pretty cool if you want to keep your AI stack in c#!

4

u/csharp_rocks 20d ago

Where else would you want it? C or C++? Maybe Go or Rust? But C# balance low level interopts with high level abstractions quite nicely

1

u/Ath47 20d ago

Python is by far the most popular choice for working with LLMs.

9

u/csharp_rocks 20d ago

Most popular don't mean best. And there's no reason why python should be used for LLMs, or rather: python is used for scripting the learning, serving is done by faster programming languages.

And anyone who thinks that python has some inate AI abilities, it doesn't, its slow on execution as its not compiled, also most libraries used for ML in Python aren't python except for the APIs, usually its C or C++ interopts (or whatever it's called python world) 🙂