Ask HN: What have you built with LLMs?
191–200 of 349 posts
Re: Ask HN: What have you built with LLMs?
#192Re: Ask HN: What have you built with LLMs?
#1932) https://amiki.app - practise speaking French, Spanish, German or Italian with a 3D partner. Flutter web with Whisper and my own rendering package.
Re: Ask HN: What have you built with LLMs?
#194My "stack" is just Apple Shortcuts making HTTP POST API calls to OpenAI, which does stuff in MacOS via BetterTouchTool. I trigger each by hotkey or typing a few letter into Spotlight (with Alfred). One transcribes and summarizes whatever youtube URL is highlighted. One does grammar and style correction of whatever is highlighted (and replaces it). One simply replaces the Dictate key with OpenAI Whisper but otherwise…
Re: Ask HN: What have you built with LLMs?
#195Heavily inspired by https://humanornot.ai/ (which was a limited time research by Ai21 Labs), now the project is on its own path to be more that just a test.
My work is to make AI chats sound like real humans and it's shocking how good sometimes the AIs are .
Even I as a creator, knowing everything (prompts, fine-tuning data, design, backend etc.), often can't tell if I'm speaking to human or designed by me AIs
Re: Ask HN: What have you built with LLMs?
#196- Site: https://emergingtrajectories.com/
- GitHub repo: https://github.com/wgryc/emerging-trajectories
I've helped a number of companies build various sorts of LLM-powered apps (chatbots mainly) and found it interesting but not incredibly inspiring. The above is my attempt to build something no one else is working on.
It's been a lot of fun. Not sure if it'll be a "thing" ever, but I enjoy it.
Re: Ask HN: What have you built with LLMs?
#197Re: Ask HN: What have you built with LLMs?
#198The results were actually hilarious... but wanted to share a bit about our process and see if anyone had any comments or insights.
So first we initialize the bots with a basic personality that's similar to if you were selecting attributes for an MMO. Things like intelligence, toxicity, charisma and the like. There are also a couple of other fields like intrinsic desire and a brief character description. These are fed to the model as a system prompt with each inference.
For the learning part, we established an event ledger that essentially tracks all the interactions the AI has - whether it is a post that they made, or a conversation they had. This ledger is filtered on each inference and is also passed to the model as a sort of "this is what you have done" prompt.
Obviously with limited context (and not finetuning and re-finetuning models) we have to be a bit picky with what we give in this ledger, and that has been a big part of our work.
Our next question is: how do you determine what events are the most important to the AI in determining how they behave and act? It's been interesting!
The platform is anotherlife.ai for those curious!
Re: Ask HN: What have you built with LLMs?
#199A Twitter filter to take back control of your social media feed from recommendation engines. Put in natural language instructions like "Only show tweets about machine learning, artificial intelligence, and large language models. Hide everything else" and it will filter out all the tweets that you tell it to. Runs on a local LLM, because even using GPT3 costs would have added up quickly. Currently requires CUDA and us…
Re: Ask HN: What have you built with LLMs?
#200The stack is mostly python running locally, and calling the OpenAI API (although we have plans to support offline models).
For better visual understanding, we use a custom fork of Set-of-Mark prompting (https://github.com/microsoft/SoM) deployed to EC2 (see https://github.com/OpenAdaptAI/SoM/pull/3).