68 Followers
55 Following
213 Posts
For personal projects (mostly opensource), for everything about planning/implementing code (not deep reasoning), I've switched to non-US models. I like US models but quota too low for the money I want to pay for no return. I get better quality/price elsewhere w/ different models
So qwen is so good that alibaba might decide to stop opensource AI... now minimax 2.7 being closed source... hmmm ok, this is not a sign of bright future... imagine that tomorrow the best and only support for building opensource AI models ends to be NVidia...
Nothing to save and no-one to spare in all current international news... Absolute shit-show....
In FR now, every day a leak of private data hacked from private service companies being third parties delegated to manage our data by private or public orgs... When do those orgs stop spreading our data to third-parties and assume the responsability for data and their location?
I'm not a fan of Anthropic/Amodei's vision sometimes but this time, Anthropic's refusal to deal with pentagon is right... Others will happily comply to it and the fatality will happen but at least there are a few people still trying to warn and avoid the worst happening too fast
Everyone doing own AI agent, especially private companies (me too). why? because now performance of closed model is no more enough to sell... local and OSS models are not far... will agents allow to make more money... sometimes... at beginning... but not after generalization.

RTFS is not just a language; it’s part of a larger system (CCOS) that governs AI autonomy with accountability.

By designing RTFS, the AI created a tool that lets it reason about its own behavior in a safe, predictable way.
10/ RTFS + CCOS are open source:
github.com/mandubian/ccos 8/8

Example RTFS snippet:
```rtfs
;; Logic (code) and Data share the same structure
(let [repos [
{:owner "rust-lang" :repo "rust"}
{:owner "mandubian" :repo "ccos"}]]
(map (fn [r] (call :mcp.github.star r)) repos))
``` 7/8
Determinism: RTFS plans are pure functions. Given the same input, they always produce the same output. This makes debugging and replaying plans feasible. 6/8
Hybrid typing: RTFS uses structural types to describe data shapes & static types to ensure function signatures are correct. This prevents runtime surprises. 5/8