You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golang-nuts
Hi folks,
I recently wrote an article I feel has some insight in how LLMs work and the best way to apply it to your day-2-day work. "AI will not take your job, but somebody using it will"
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Cheikh Seck, golang-nuts
cool, i already gave a clap and follow
-- Nopaleon B.
Cheikh Seck
unread,
May 1, 2026, 6:28:21 AMMay 1
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golang-nuts
Thank you!
Phillip Hagger
unread,
May 2, 2026, 6:27:09 PMMay 2
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golang-nuts
I started building a harness in Go and then discovered that I was basically building Pi in Go. Still glad to see some Go tools in the space and will try to check it out.
Cheikh Seck
unread,
May 3, 2026, 1:44:42 PMMay 3
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golang-nuts
Thank you! I discovered Pi after the fact but I stuck to it because (without any project context) the harness' tools took about 1,100 tokens (on average) and I see some value in that. I also like to think of this project a car with manual transmission where I have more freedom in how context, limits and guardrails are managed.
Cheikh Seck
unread,
May 3, 2026, 2:31:21 PMMay 3
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to golang-nuts
Once I had a stable version, I went crazy with some of the Go primitives. Tool calls are done with Goroutines, concurrently (lol) and for scheduling tasks, Goroutines are spawned, with a separate context window, to handle repetitive task execution ( to avoid degradation through compaction) .I use singleflight for tasks that should run once but may be called by separate packages in any random order. I also used Channels to streamline communication between different components. I highly recommend building an agent with Go.