I’ve been building VelinScript (Velisch), a small programming language focused on AI‑API development. Version 2.5 is now out, and it’s the first release that feels “complete” enough for real projects.
Core ideas:
simple, modern syntax
Rust‑inspired performance model
built‑in tools for AI workflows (embeddings, similarity, pipelines)
flow‑based execution with automatic rollback
auto‑docs and auto‑tests via decorators
cross‑platform installers (Win/Linux/macOS)
Example:
velin
@Flow
fn checkout(user, cart) {
validate(user)
reserve(cart)
charge(user, cart)
}
If you’re into new languages, API design, or AI‑driven backends, I’d love feedback.
I’ve been building VelinScript (Velisch), a small programming language focused on AI‑API development. Version 2.5 is now out, and it’s the first release that feels “complete” enough for real projects.
Core ideas:
simple, modern syntax
Rust‑inspired performance model
built‑in tools for AI workflows (embeddings, similarity, pipelines)
flow‑based execution with automatic rollback
auto‑docs and auto‑tests via decorators
cross‑platform installers (Win/Linux/macOS)
Example:
velin @Flow fn checkout(user, cart) { validate(user) reserve(cart) charge(user, cart) } If you’re into new languages, API design, or AI‑driven backends, I’d love feedback.
GitHub: https://github.com/SkyliteDesign/velinscript Docs: https://velinscript.birdapi.de/docs