The best Hacker News stories from Show from the past day

Go back

Latest posts:

Show HN: I built a synthesizer based on 3D physics

I've been working on the Anukari 3D Physics Synthesizer for a little over two years now. It's one of the earliest virtual instruments to rely on the GPU for audio processing, which has been incredibly challenging and fun. In the end, predictably, the GUI for manipulating the 3D system actually ended up being a lot more work than the physics simulation.<p>So far I am only selling it direct on my website, which seems to be working well. I hope to turn it into a sustainable business, and ideally I'd have enough revenue to hire folks to help with it. So far it's been 99% a solo project, with (awesome) contractors brought in for some of the stuff that I'm bad at, like the 3D models and making instrument presets/videos.<p>The official launch announcement video is here: <a href="https://www.youtube.com/watch?v=NYX_eeNVIEU" rel="nofollow">https://www.youtube.com/watch?v=NYX_eeNVIEU</a><p>But if you REALLY want to see what it can do, check out what Mick Cormick did with in on the first day: <a href="https://x.com/Mick_Gordon/status/1918146487948919222" rel="nofollow">https://x.com/Mick_Gordon/status/1918146487948919222</a><p>I've kept a fairly detailed developer log about my progress on the project since October 2023, which might be of interest to the hardcore technical folks here: <a href="https://anukari.com/blog/devlog" rel="nofollow">https://anukari.com/blog/devlog</a><p>I also gave a talk at Audio Developer Conference 2023 (ADC23) that goes deep into a couple of the problems I solved for Anukari: <a href="https://www.youtube.com/watch?v=lb8b1SYy73Q" rel="nofollow">https://www.youtube.com/watch?v=lb8b1SYy73Q</a>

Show HN: Kexa.io – Open-Source IT Security and Compliance Verification

Hi HN,<p>We're building Kexa.io (<a href="https://github.com/kexa-io/Kexa">https://github.com/kexa-io/Kexa</a>), an open-source tool developed in France (incubated at Euratech Cyber Campus) to help teams automate the often tedious process of verifying IT security and compliance. Keeping track of configurations across diverse assets (servers, K8s, cloud resources) and ensuring they meet security baselines (like CIS benchmarks, etc.) manually is challenging and error-prone.<p>Our goal with the open-source core is to provide a straightforward way to define checks, scan your assets, and get clear reports on your security posture. You can define your own rules or use common standards.<p>We are now actively developing our SaaS offering, planned for a beta release around June 2025. The key feature will be an AI-powered security administration agent specifically designed for cloud environments (initially targeting AWS, GCP, Azure). Instead of just reporting issues, this agent will aim to provide proactive, actionable recommendations and potentially automate certain remediation tasks to simplify cloud security management and hardening.<p>We'd love for the HN community to check out the open-source project on GitHub. Feedback on the concept or the current tool is highly welcome, and a star if you find it interesting helps others discover the project! If the upcoming AI-powered cloud security agent sounds interesting, we'd be particularly keen to hear your thoughts or if you might be interested in joining the beta (~June 2025).<p>thank you !!

Show HN: ART – a new open-source RL framework for training agents

Hey HN, I wanted to share a new project we've been working on for the last couple of months called ART (<a href="https://github.com/OpenPipe/ART">https://github.com/OpenPipe/ART</a>).<p>ART is a new open-source framework for training agents using reinforcement learning (RL). RL allows you to train an agent to perform better at any task whose outcome can be measured and quantified.<p>There are many excellent projects focused on training LLMs with RL, such as GRPOTrainer (<a href="https://huggingface.co/docs/trl/main/en/grpo_trainer" rel="nofollow">https://huggingface.co/docs/trl/main/en/grpo_trainer</a>) and verl (<a href="https://github.com/volcengine/verl">https://github.com/volcengine/verl</a>). We've used these frameworks extensively for customer-facing projects at OpenPipe, but grew frustrated with some key limitations:<p>- Multi-turn workflows, where the agent calls a tool, gets a response, and calls another, are not well supported. This makes them a non-starter for any task that requires an agent to perform a sequence of actions.<p>- Other frameworks typically have low GPU efficiency. They may require multiple H100 GPUs just to train a small 7B parameter model, and aren't able to keep the GPUs busy consistently during both the "rollout" and "training" phases of the training loop.<p>- Existing frameworks are typically not a convenient shape for integrating with existing agentic codebases. Existing trainers expect you to call raw text completion endpoints, and don't automatically provide industry-standard chat completion APIs.<p>ART is designed to address these limitations and make it easy to train high-quality agents. We've also shared many details and practical lessons learned is in this post, which walks through a demo of training an email research agent that outperforms o3 (<a href="https://openpipe.ai/blog/art-e-mail-agent">https://openpipe.ai/blog/art-e-mail-agent</a>). You can also find out more about ART's architecture in our announcement post (<a href="https://openpipe.ai/blog/art-trainer-a-new-rl-trainer-for-agents">https://openpipe.ai/blog/art-trainer-a-new-rl-trainer-for-ag...</a>).<p>Happy to answer any questions you have!

Show HN: ART – a new open-source RL framework for training agents

Hey HN, I wanted to share a new project we've been working on for the last couple of months called ART (<a href="https://github.com/OpenPipe/ART">https://github.com/OpenPipe/ART</a>).<p>ART is a new open-source framework for training agents using reinforcement learning (RL). RL allows you to train an agent to perform better at any task whose outcome can be measured and quantified.<p>There are many excellent projects focused on training LLMs with RL, such as GRPOTrainer (<a href="https://huggingface.co/docs/trl/main/en/grpo_trainer" rel="nofollow">https://huggingface.co/docs/trl/main/en/grpo_trainer</a>) and verl (<a href="https://github.com/volcengine/verl">https://github.com/volcengine/verl</a>). We've used these frameworks extensively for customer-facing projects at OpenPipe, but grew frustrated with some key limitations:<p>- Multi-turn workflows, where the agent calls a tool, gets a response, and calls another, are not well supported. This makes them a non-starter for any task that requires an agent to perform a sequence of actions.<p>- Other frameworks typically have low GPU efficiency. They may require multiple H100 GPUs just to train a small 7B parameter model, and aren't able to keep the GPUs busy consistently during both the "rollout" and "training" phases of the training loop.<p>- Existing frameworks are typically not a convenient shape for integrating with existing agentic codebases. Existing trainers expect you to call raw text completion endpoints, and don't automatically provide industry-standard chat completion APIs.<p>ART is designed to address these limitations and make it easy to train high-quality agents. We've also shared many details and practical lessons learned is in this post, which walks through a demo of training an email research agent that outperforms o3 (<a href="https://openpipe.ai/blog/art-e-mail-agent">https://openpipe.ai/blog/art-e-mail-agent</a>). You can also find out more about ART's architecture in our announcement post (<a href="https://openpipe.ai/blog/art-trainer-a-new-rl-trainer-for-agents">https://openpipe.ai/blog/art-trainer-a-new-rl-trainer-for-ag...</a>).<p>Happy to answer any questions you have!

Show HN: Kubetail – Real-time log search for Kubernetes

Hi Everyone!<p>Kubetail is a general-purpose logging dashboard for Kubernetes, optimized for tailing logs across multi-container workloads in real-time. With Kubetail, you can view logs from all the containers in a workload (e.g. Deployment or DaemonSet) merged into a single chronological timeline, delivered to your browser or terminal.<p>I launched Kubetail on HN last year and at that time the top request was to add search. Now I'm happy to say we finally have search available in our latest official release (cli/v0.4.3, helm/v0.10.1). You can check it out in action here:<p><a href="https://www.kubetail.com/demo" rel="nofollow">https://www.kubetail.com/demo</a><p>Kubetail normally fetches logs using the Kubernetes API, which does not have search built-in. To enable search, click the “Install” button in the GUI or run `kubetail cluster install` in the CLI to deploy a DaemonSet that places a Kubetail agent on every node. Each agent runs a custom Rust binary powered by ripgrep; it scans the node’s log files and streams only matching lines to your browser or terminal. You can think of a Kubetail search as "remote grep" for your Kubernetes logs. Now you don’t need to download an entire log file just to grep it locally.<p>Since last year we've also added some other neat features that users find helpful. In particular, we built a simple CLI tool that starts the web dashboard on your desktop:<p><pre><code> # Install brew install kubetail # Run kubetail serve </code></pre> We also added a powerful logs sub-command to the CLI that you can use to follow container logs or even fetch all the records in a given time window to analyze them in more detail locally (quick-start):<p><pre><code> # Follow example $ kubetail logs deployments/web \ --with-ts \ --with-pod \ --follow # Fetch example $ kubetail logs deployments/web \ --since 2025-04-20T00:00:00Z \ --until 2025-04-21T00:00:00Z \ --all > logs.txt </code></pre> We’ve added a lot more features since last year but these are the ones I wanted to highlight.<p>I hope you like what we're doing with Kubetail! Your feedback is very valuable so please let us know what you think in the comments here or in our Discord chat.<p>Andres

Show HN: Kubetail – Real-time log search for Kubernetes

Hi Everyone!<p>Kubetail is a general-purpose logging dashboard for Kubernetes, optimized for tailing logs across multi-container workloads in real-time. With Kubetail, you can view logs from all the containers in a workload (e.g. Deployment or DaemonSet) merged into a single chronological timeline, delivered to your browser or terminal.<p>I launched Kubetail on HN last year and at that time the top request was to add search. Now I'm happy to say we finally have search available in our latest official release (cli/v0.4.3, helm/v0.10.1). You can check it out in action here:<p><a href="https://www.kubetail.com/demo" rel="nofollow">https://www.kubetail.com/demo</a><p>Kubetail normally fetches logs using the Kubernetes API, which does not have search built-in. To enable search, click the “Install” button in the GUI or run `kubetail cluster install` in the CLI to deploy a DaemonSet that places a Kubetail agent on every node. Each agent runs a custom Rust binary powered by ripgrep; it scans the node’s log files and streams only matching lines to your browser or terminal. You can think of a Kubetail search as "remote grep" for your Kubernetes logs. Now you don’t need to download an entire log file just to grep it locally.<p>Since last year we've also added some other neat features that users find helpful. In particular, we built a simple CLI tool that starts the web dashboard on your desktop:<p><pre><code> # Install brew install kubetail # Run kubetail serve </code></pre> We also added a powerful logs sub-command to the CLI that you can use to follow container logs or even fetch all the records in a given time window to analyze them in more detail locally (quick-start):<p><pre><code> # Follow example $ kubetail logs deployments/web \ --with-ts \ --with-pod \ --follow # Fetch example $ kubetail logs deployments/web \ --since 2025-04-20T00:00:00Z \ --until 2025-04-21T00:00:00Z \ --all > logs.txt </code></pre> We’ve added a lot more features since last year but these are the ones I wanted to highlight.<p>I hope you like what we're doing with Kubetail! Your feedback is very valuable so please let us know what you think in the comments here or in our Discord chat.<p>Andres

Show HN: Kubetail – Real-time log search for Kubernetes

Hi Everyone!<p>Kubetail is a general-purpose logging dashboard for Kubernetes, optimized for tailing logs across multi-container workloads in real-time. With Kubetail, you can view logs from all the containers in a workload (e.g. Deployment or DaemonSet) merged into a single chronological timeline, delivered to your browser or terminal.<p>I launched Kubetail on HN last year and at that time the top request was to add search. Now I'm happy to say we finally have search available in our latest official release (cli/v0.4.3, helm/v0.10.1). You can check it out in action here:<p><a href="https://www.kubetail.com/demo" rel="nofollow">https://www.kubetail.com/demo</a><p>Kubetail normally fetches logs using the Kubernetes API, which does not have search built-in. To enable search, click the “Install” button in the GUI or run `kubetail cluster install` in the CLI to deploy a DaemonSet that places a Kubetail agent on every node. Each agent runs a custom Rust binary powered by ripgrep; it scans the node’s log files and streams only matching lines to your browser or terminal. You can think of a Kubetail search as "remote grep" for your Kubernetes logs. Now you don’t need to download an entire log file just to grep it locally.<p>Since last year we've also added some other neat features that users find helpful. In particular, we built a simple CLI tool that starts the web dashboard on your desktop:<p><pre><code> # Install brew install kubetail # Run kubetail serve </code></pre> We also added a powerful logs sub-command to the CLI that you can use to follow container logs or even fetch all the records in a given time window to analyze them in more detail locally (quick-start):<p><pre><code> # Follow example $ kubetail logs deployments/web \ --with-ts \ --with-pod \ --follow # Fetch example $ kubetail logs deployments/web \ --since 2025-04-20T00:00:00Z \ --until 2025-04-21T00:00:00Z \ --all > logs.txt </code></pre> We’ve added a lot more features since last year but these are the ones I wanted to highlight.<p>I hope you like what we're doing with Kubetail! Your feedback is very valuable so please let us know what you think in the comments here or in our Discord chat.<p>Andres

Show HN: Kubetail – Real-time log search for Kubernetes

Hi Everyone!<p>Kubetail is a general-purpose logging dashboard for Kubernetes, optimized for tailing logs across multi-container workloads in real-time. With Kubetail, you can view logs from all the containers in a workload (e.g. Deployment or DaemonSet) merged into a single chronological timeline, delivered to your browser or terminal.<p>I launched Kubetail on HN last year and at that time the top request was to add search. Now I'm happy to say we finally have search available in our latest official release (cli/v0.4.3, helm/v0.10.1). You can check it out in action here:<p><a href="https://www.kubetail.com/demo" rel="nofollow">https://www.kubetail.com/demo</a><p>Kubetail normally fetches logs using the Kubernetes API, which does not have search built-in. To enable search, click the “Install” button in the GUI or run `kubetail cluster install` in the CLI to deploy a DaemonSet that places a Kubetail agent on every node. Each agent runs a custom Rust binary powered by ripgrep; it scans the node’s log files and streams only matching lines to your browser or terminal. You can think of a Kubetail search as "remote grep" for your Kubernetes logs. Now you don’t need to download an entire log file just to grep it locally.<p>Since last year we've also added some other neat features that users find helpful. In particular, we built a simple CLI tool that starts the web dashboard on your desktop:<p><pre><code> # Install brew install kubetail # Run kubetail serve </code></pre> We also added a powerful logs sub-command to the CLI that you can use to follow container logs or even fetch all the records in a given time window to analyze them in more detail locally (quick-start):<p><pre><code> # Follow example $ kubetail logs deployments/web \ --with-ts \ --with-pod \ --follow # Fetch example $ kubetail logs deployments/web \ --since 2025-04-20T00:00:00Z \ --until 2025-04-21T00:00:00Z \ --all > logs.txt </code></pre> We’ve added a lot more features since last year but these are the ones I wanted to highlight.<p>I hope you like what we're doing with Kubetail! Your feedback is very valuable so please let us know what you think in the comments here or in our Discord chat.<p>Andres

Show HN: Roons – Mechanical Computer Kit

I built a mechanical computer kit: <a href="https://whomtech.com/show-hn" rel="nofollow">https://whomtech.com/show-hn</a><p>tl;dr: it's a cellular automaton on a "loom" of alternating bars, using contoured tiles to guide marbles through logic gates.<p>It's not just "Turing complete, job done"; I've tried to make it actually practical. Devices are compact, e.g. you can fit a binary adder into a 3cm square. It took me nearly two years and dozens of different approaches.<p>There's a sequence of interactive tutorials to try out, demo videos, and a janky simulator. I've also sent out a few prototype kits and have some more ready to go.<p>Please ask me anything, I will talk about this for hours.<p>-- Jesse

Show HN: Roons – Mechanical Computer Kit

I built a mechanical computer kit: <a href="https://whomtech.com/show-hn" rel="nofollow">https://whomtech.com/show-hn</a><p>tl;dr: it's a cellular automaton on a "loom" of alternating bars, using contoured tiles to guide marbles through logic gates.<p>It's not just "Turing complete, job done"; I've tried to make it actually practical. Devices are compact, e.g. you can fit a binary adder into a 3cm square. It took me nearly two years and dozens of different approaches.<p>There's a sequence of interactive tutorials to try out, demo videos, and a janky simulator. I've also sent out a few prototype kits and have some more ready to go.<p>Please ask me anything, I will talk about this for hours.<p>-- Jesse

Show HN: Roons – Mechanical Computer Kit

I built a mechanical computer kit: <a href="https://whomtech.com/show-hn" rel="nofollow">https://whomtech.com/show-hn</a><p>tl;dr: it's a cellular automaton on a "loom" of alternating bars, using contoured tiles to guide marbles through logic gates.<p>It's not just "Turing complete, job done"; I've tried to make it actually practical. Devices are compact, e.g. you can fit a binary adder into a 3cm square. It took me nearly two years and dozens of different approaches.<p>There's a sequence of interactive tutorials to try out, demo videos, and a janky simulator. I've also sent out a few prototype kits and have some more ready to go.<p>Please ask me anything, I will talk about this for hours.<p>-- Jesse

Show HN: An interactive demo of QR codes' error correction

Hi HN! This is a hobby project of mine that recently landed me my first interview and helped me get my first internship offers.<p>Draw on a QR code, and the health bars will accurately display how close the QR code is to being unscannable. How few errors does it take to break a QR code? How many errors can a QR code handle? Counters at the bottom track your record minimum and maximum damage. (Can you figure out how to break a QR code with 0.0% damage to the actual data region?)<p>Also, click on the magnifying glass button to toggle between "draw mode" and "inspect mode". I encourage you to use your phone's camera to scan the code as you draw and undo/redo to verify that the code really does break when the app says it does.<p>I wrote the underlying decoder in C++, and it's compiled to WebAssembly for the website.<p>I hope you find it interesting.

Show HN: An interactive demo of QR codes' error correction

Hi HN! This is a hobby project of mine that recently landed me my first interview and helped me get my first internship offers.<p>Draw on a QR code, and the health bars will accurately display how close the QR code is to being unscannable. How few errors does it take to break a QR code? How many errors can a QR code handle? Counters at the bottom track your record minimum and maximum damage. (Can you figure out how to break a QR code with 0.0% damage to the actual data region?)<p>Also, click on the magnifying glass button to toggle between "draw mode" and "inspect mode". I encourage you to use your phone's camera to scan the code as you draw and undo/redo to verify that the code really does break when the app says it does.<p>I wrote the underlying decoder in C++, and it's compiled to WebAssembly for the website.<p>I hope you find it interesting.

Show HN: AgenticSeek – Self-hosted alternative to cloud-based AI tools

I’ve spent the last two months building AgenticSeek, a privacy-focused alternative to cloud-based AI tools like ManusAI. It runs entirely on your machine—no API calls, no data leaks.<p>Why AgenticSeek?<p>Optimized for local LLMs (developed mostly on an RTX 3060 running deepseek r1 14b).<p>Truly private: All components (TTS, STT, planner) run locally.<p>More responsive than alternatives (we respond fast to issues + active Discord).<p>Designed to be fun—think JARVIS-like voice control, multi-agent workflows, and a slick web UI.<p>Current Features:<p>Web browsing (research + form filling), code write/fix, file management/search. Planning capabilites to use multiple agents for complex task.<p>Is it stable? Prototype-stage—great for tinkerers.<p>Hoping to get feedback!

Show HN: AgenticSeek – Self-hosted alternative to cloud-based AI tools

I’ve spent the last two months building AgenticSeek, a privacy-focused alternative to cloud-based AI tools like ManusAI. It runs entirely on your machine—no API calls, no data leaks.<p>Why AgenticSeek?<p>Optimized for local LLMs (developed mostly on an RTX 3060 running deepseek r1 14b).<p>Truly private: All components (TTS, STT, planner) run locally.<p>More responsive than alternatives (we respond fast to issues + active Discord).<p>Designed to be fun—think JARVIS-like voice control, multi-agent workflows, and a slick web UI.<p>Current Features:<p>Web browsing (research + form filling), code write/fix, file management/search. Planning capabilites to use multiple agents for complex task.<p>Is it stable? Prototype-stage—great for tinkerers.<p>Hoping to get feedback!

Show HN: An MCP server for understanding AWS costs

Hey all - I work at Vantage, a FinOps platform.<p>I know AI is peak hype right now. But it has definitely changed some of our dev workflows already. So we wanted to find a way to let our customers experiment with how they can use AI to make their cloud cost management work more productive.<p>The MCP Server acts as a connector between LLMs (right now only Claude, Cursor support it but ChatGPT and Google Gemini coming soon) and your cost and usage data on Vantage which supports 20+ cloud infra providers including AWS, Datadog, Mongo, etc. (You have to have a Vantage account to use it since it's using the Vantage API)<p>Video demo: <a href="https://www.youtube.com/watch?v=n0VP2NlUvRU" rel="nofollow">https://www.youtube.com/watch?v=n0VP2NlUvRU</a><p>Repo: <a href="https://github.com/vantage-sh/vantage-mcp-server">https://github.com/vantage-sh/vantage-mcp-server</a><p>It's really impressive how capable the latest-gen models are with an MCP server and an API. So far we have found it useful for:<p>Ad-Hoc questions: "What's our non-prod cloud spend per engineer if we have 25 engineers"<p>Action plans: "Find unallocated spend and look for clues how it should be tagged"<p>Multi-tool workflows: "Find recent cost spikes that look like they could have come from eng changes and look for GitHub PR's merged around the same time" (using it in combination with the GitHub MCP)<p>Thought I'd share, let me know if you have questions.

Show HN: An MCP server for understanding AWS costs

Hey all - I work at Vantage, a FinOps platform.<p>I know AI is peak hype right now. But it has definitely changed some of our dev workflows already. So we wanted to find a way to let our customers experiment with how they can use AI to make their cloud cost management work more productive.<p>The MCP Server acts as a connector between LLMs (right now only Claude, Cursor support it but ChatGPT and Google Gemini coming soon) and your cost and usage data on Vantage which supports 20+ cloud infra providers including AWS, Datadog, Mongo, etc. (You have to have a Vantage account to use it since it's using the Vantage API)<p>Video demo: <a href="https://www.youtube.com/watch?v=n0VP2NlUvRU" rel="nofollow">https://www.youtube.com/watch?v=n0VP2NlUvRU</a><p>Repo: <a href="https://github.com/vantage-sh/vantage-mcp-server">https://github.com/vantage-sh/vantage-mcp-server</a><p>It's really impressive how capable the latest-gen models are with an MCP server and an API. So far we have found it useful for:<p>Ad-Hoc questions: "What's our non-prod cloud spend per engineer if we have 25 engineers"<p>Action plans: "Find unallocated spend and look for clues how it should be tagged"<p>Multi-tool workflows: "Find recent cost spikes that look like they could have come from eng changes and look for GitHub PR's merged around the same time" (using it in combination with the GitHub MCP)<p>Thought I'd share, let me know if you have questions.

Show HN: An MCP server for understanding AWS costs

Hey all - I work at Vantage, a FinOps platform.<p>I know AI is peak hype right now. But it has definitely changed some of our dev workflows already. So we wanted to find a way to let our customers experiment with how they can use AI to make their cloud cost management work more productive.<p>The MCP Server acts as a connector between LLMs (right now only Claude, Cursor support it but ChatGPT and Google Gemini coming soon) and your cost and usage data on Vantage which supports 20+ cloud infra providers including AWS, Datadog, Mongo, etc. (You have to have a Vantage account to use it since it's using the Vantage API)<p>Video demo: <a href="https://www.youtube.com/watch?v=n0VP2NlUvRU" rel="nofollow">https://www.youtube.com/watch?v=n0VP2NlUvRU</a><p>Repo: <a href="https://github.com/vantage-sh/vantage-mcp-server">https://github.com/vantage-sh/vantage-mcp-server</a><p>It's really impressive how capable the latest-gen models are with an MCP server and an API. So far we have found it useful for:<p>Ad-Hoc questions: "What's our non-prod cloud spend per engineer if we have 25 engineers"<p>Action plans: "Find unallocated spend and look for clues how it should be tagged"<p>Multi-tool workflows: "Find recent cost spikes that look like they could have come from eng changes and look for GitHub PR's merged around the same time" (using it in combination with the GitHub MCP)<p>Thought I'd share, let me know if you have questions.

Show HN: Create your own finetuned AI model using Google Sheets

Hello HN,<p>We built Promptrepo to make finetuning accessible to product teams — not just ML engineers. Last week, OpenAI’s CPO shared how they use fine-tuning for everything from customer support to deep research, and called it the future for serious AI teams. Yet most teams I know still rely on prompting, because fine-tuning is too technical, while the people who have the training data (product managers and domain experts) are often non-technical. With Promptrepo, they can now:<p>- Add training examples in Google Sheets<p>- Click a button to train<p>- Deploy and test instantly<p>- Use OpenAI, Claude, Gemini or Llama models<p>We’ve used this internally for years to power AI workflows in our products (Formfacade, Formesign, Neartail), and we're now opening it up to others. Would love your feedback and happy to answer any questions!<p>---<p>Try it free - <a href="https://promptrepo.com/finetune" rel="nofollow">https://promptrepo.com/finetune</a><p>Demo video - <a href="https://www.youtube.com/watch?v=e1CTin1bD0w" rel="nofollow">https://www.youtube.com/watch?v=e1CTin1bD0w</a><p>Why we built it - <a href="https://guesswork.co/support/post/fine-tuning-is-the-future-and-now-its-within-every.anc-ddfd2598-5798-423d-b6ec-e7d84e98847a.html" rel="nofollow">https://guesswork.co/support/post/fine-tuning-is-the-future-...</a>

Show HN: Create your own finetuned AI model using Google Sheets

Hello HN,<p>We built Promptrepo to make finetuning accessible to product teams — not just ML engineers. Last week, OpenAI’s CPO shared how they use fine-tuning for everything from customer support to deep research, and called it the future for serious AI teams. Yet most teams I know still rely on prompting, because fine-tuning is too technical, while the people who have the training data (product managers and domain experts) are often non-technical. With Promptrepo, they can now:<p>- Add training examples in Google Sheets<p>- Click a button to train<p>- Deploy and test instantly<p>- Use OpenAI, Claude, Gemini or Llama models<p>We’ve used this internally for years to power AI workflows in our products (Formfacade, Formesign, Neartail), and we're now opening it up to others. Would love your feedback and happy to answer any questions!<p>---<p>Try it free - <a href="https://promptrepo.com/finetune" rel="nofollow">https://promptrepo.com/finetune</a><p>Demo video - <a href="https://www.youtube.com/watch?v=e1CTin1bD0w" rel="nofollow">https://www.youtube.com/watch?v=e1CTin1bD0w</a><p>Why we built it - <a href="https://guesswork.co/support/post/fine-tuning-is-the-future-and-now-its-within-every.anc-ddfd2598-5798-423d-b6ec-e7d84e98847a.html" rel="nofollow">https://guesswork.co/support/post/fine-tuning-is-the-future-...</a>

< 1 2 3 ... 17 18 19 20 21 ... 815 816 817 >