frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: GSB (Gold Silver Bronze)

https://playgsb.com/
1•xamed•10s ago•0 comments

Brio mode in Colibri: Scoring a closed set instead of generating

https://github.com/JustVugg/colibri/blob/v1.12.0/docs/brio.md
1•vforno•19s ago•0 comments

We Infringe Trademarks

https://www.indiehackers.com/post/how-we-infringe-trademarks-8ff22a699b
1•InterAni•36s ago•0 comments

Self-Hosting Behind Cgnat – Be Libre

https://david.alvarezrosa.com/posts/self-hosting-behind-cgnat/
2•dalvrosa•1m ago•1 comments

Thread Trace Part 1: ROCprof Compute Viewer – ROCm Blogs

https://rocm.blogs.amd.com/software-tools-optimization/thread-trace/README.html
1•ankitg12•4m ago•0 comments

Show HN: Audit your site's structure for AI search crawlers (ChatGPT, Claude)

https://ukaiseoconsultant.co.uk/ai-driven-seo-audits/
1•auaiseo•5m ago•0 comments

Amazon blocks Meta's Muse AI agent from checkouts

https://www.neowin.net/news/amazon-blocks-metas-muse-ai-agent-from-checkouts/
1•bundie•10m ago•0 comments

Project Lily Video is getting censored by Google

https://www.youtube.com/watch?v=kQ-i642z3jc
1•frag•14m ago•0 comments

WTFs per Minute (2008)

https://www.osnews.com/story/19266/wtfsm/
1•vladde•14m ago•0 comments

Show HN: An extension to capture and annotate screenshots, with a terminal skin

https://chromewebstore.google.com/detail/webmend-–-full-page-scree/blfeopjadgdflmnibdobadhonmoe...
1•frontweb•15m ago•0 comments

Show HN: Witdem – Did your AI Agent accomplish its task? and at what cost?

https://demo.witdem.com
1•ebrahimisoheil•15m ago•0 comments

Replacing Linear MCP with linear-CLI

https://thebiglog.com/links/linear-cli-instead-of-linear-mcp
1•shibel•17m ago•0 comments

Show HN: Skillgesture – versioned, on-demand skills for AI agents

https://github.com/Gabry848/skillgesture
1•Gabry848•18m ago•0 comments

US and China Discuss Alerting Each Other to AI National Security Threats

https://www.wired.com/story/us-and-china-discuss-alerting-each-other-to-ai-national-security-thre...
3•joozio•19m ago•0 comments

What re AI in software engineering are you struggling with the most?

https://twitter.com/mitsuhiko/status/2101401648543195328
1•tosh•20m ago•0 comments

The Bounding Simplex: A SIMD-Era Rejection Primitive [pdf]

https://mcnett.org/bounding_simplex.pdf
1•ibobev•22m ago•0 comments

I built a small Instagram backup tool for my own posts, stories, and highlights

https://hikerapi.com/
2•sheraziuy•22m ago•0 comments

Neural Texture Compression in Metal 4

https://syllogi-graphikon.vercel.app/posts/metal-neural-texture-compression/
1•ibobev•23m ago•0 comments

Show HN: Search API for 3M govt contracts in 63 countries

https://www.selltostate.com/
1•nadyyym•23m ago•0 comments

First Shader from Zero in Godot 4

https://www.gdquest.com/library/first_shader_godot4_portal/
1•ibobev•23m ago•0 comments

Australia banned these Chinese CCTV cameras. Now they're turning up in EVs

https://www.abc.net.au/news/2026-09-21/ev-electric-vehicle-leapmotor-chinese-cctv-cameras-dahua-b...
2•colinprince•25m ago•0 comments

ROM Magazine Interviews Roberta Williams (1983)

https://computeradsfromthepast.substack.com/p/rom-magazine-interviews-roberta-williams
2•rbanffy•25m ago•0 comments

Show HN: Maki, an open-source multi-agent LLM framework (local or hosted)

https://github.com/BowlOfData/maki
2•bowlofdata•28m ago•0 comments

Show HN: Proxy-benchmark – is it the proxy, the browser, or your machine?

https://github.com/nodemaven/proxy-benchmark
2•pia-nm•29m ago•0 comments

New low-cost burstable Amazon EC2 T8i instances are generally available

https://aws.amazon.com/blogs/aws/new-low-cost-burstable-amazon-ec2-t8i-instances-are-generally-av...
1•mariuz•31m ago•0 comments

Microsoft Systems Journal Interviews Gordon Letwin (1987)

https://computeradsfromthepast.substack.com/p/microsoft-systems-journal-interviews
1•rbanffy•37m ago•0 comments

Been thinking about our platforms and information diet we consume lately

1•rej_log101•38m ago•0 comments

How to export ChatGPT to Google Docs without losing formatting [video]

https://www.youtube.com/watch?v=zUzkUI7U-A4
2•quysala12•42m ago•0 comments

AI is reaching new highs with AROM Labs

1•project_silenc•46m ago•0 comments

On Contagion (2019) – Boris Cherny

https://borischerny.com/philosophy/of/programming/2019/09/08/On-Contagion.html
2•tomasyany•47m ago•1 comments
Open in hackernews

LLM functions in TypeScript: a composable pattern for prompt/LLM/parse/execute

https://medium.com/llm-exe
5•llm-exe•1y ago

Comments

llm-exe•1y ago
A few weeks ago I posted about llm-exe, a TypeScript library for structuring LLM calls with reusable components.

I just put together a Medium series that digs deeper into how it works. It breaks down the idea of an LLM function - an executor that wraps a prompt, a model, and a parser. Each part does one thing well, and together they give you a clean, well-typed, testable, and composable way to work with LLMs.

The posts walk through each layer: prompt, parser, LLM, executor. If you're building LLM features in production with TypeScript, I think you’ll find the structure helpful. I am interested in any feedback.

Medium series: https://medium.com/llm-exe

mrbashtech•1y ago
Great work! folks at llm-exe; As a TypeScript developer working with LLMs, llm-exe has been a game-changer for me. It abstracts away the boilerplate of prompt formatting, model integration, and response parsing, allowing me to focus on building features.

The modular design—separating prompts, parsers, and executors—makes my codebase cleaner and more maintainable. Plus, the ability to switch between different LLM providers with minimal code changes is incredibly convenient.