HN user

lgrammel

52 karma
Posts18
Comments20
View on HN
github.com 11mo ago

Python AI SDK

lgrammel
1pts0
www.daily.co 2y ago

How to talk to an LLM (with your voice)

lgrammel
2pts0
www.technologyreview.com 2y ago

Deepfakes of Chinese influencers are livestreaming 24/7

lgrammel
2pts0
blog.testdouble.com 2y ago

Why the right tools fail for the wrong reasons

lgrammel
1pts0
www.thisiscolossal.com 2y ago

Indigenous Earthworks Hidden in the Amazon Reveal Human Connections to Forest

lgrammel
1pts0
eugeneyan.com 2y ago

Reflections on AI Engineer Summit 2023

lgrammel
2pts0
www.ignorance.ai 2y ago

The State of AI Engineering

lgrammel
1pts0
platform.openai.com 2y ago

OpenAI GPT base models now have 16k context window

lgrammel
2pts0
modelfusion.dev 2y ago

Show HN: ModelFusion – Alternative to Langchain.js

lgrammel
5pts2
github.com 2y ago

Show HN: AI-utils.js – TypeScript-first lib for AI apps, chatbots, and agents

lgrammel
3pts0
github.com 3y ago

I've released JavaScript Assistant for VS Code (120 refactorings) as open source

lgrammel
3pts0
github.com 3y ago

Looking for feedback – open-source AI assistant in VS Code

lgrammel
1pts1
marketplace.visualstudio.com 4y ago

Show HN: 80+ JavaScript code assists and refactorings for VS Code

lgrammel
2pts0
marketplace.visualstudio.com 4y ago

Show HN: I made a VS Code extension that helps you refactor JavaScript

lgrammel
3pts0
p42.ai 4y ago

Can You Refactor JavaScript Safely Without Test Coverage?

lgrammel
1pts0
p42.ai 4y ago

Formats for Great Team Retrospectives

lgrammel
1pts0
p42.ai 4y ago

Supercharge VS Code with 32 JavaScript Refactorings

lgrammel
1pts0
p42.ai 5y ago

Show HN: Playground with JavaScript Code Modernizations

lgrammel
1pts1

So, you essentially took my project ( https://github.com/rubberduck-ai/rubberduck-vscode ), and instead of contributing to it or forking it, you recommitted all the code under your own name, with a few small tweaks.

To be fair, I saw that you give credit, but it's kind of disappointing still given that prob 98% of the project is the work of the Rubberduck contributors. I know Rubberduck is not that active any more, but it's still disappointing.

[dead] 3 years ago

Hey!

I've created "StoryTeller", a multi-modal app that quickly generates audio stories for pre-school kids.

StoryTeller is built with the following libraries:

- Fastify - Next.js - shadcn/ui - ModelFusion - Zod

The following AI APIs are used:

- OpenAI (story generation, embeddings) - Eleven Labs (tts) - Lmnt (tts) - thanks for sponsoring the project with credits! - Stability (images)

https://github.com/lgrammel/storyteller

StoryTeller is an exploratory web application that creates short audio stories for pre-school kids.

It used speech-to-text, llms, text-to-speech, embeddings and image generation.

StoryTeller is built with the following libraries:

ModelFusion Fastify Next.js shadcn/ui Zod

The following AI APIs are used:

OpenAI Eleven Labs Lmnt Stability

Yes, good point, JS/TS is definitely behind Python. That might explain some of it.

I expect most models to become multi modal in the future and am building towards. A lot of the core logic of agents will nevertheless be text based imo, so that’s a central piece, but I already added text to image and speech to text, and plan to add text to speech next.

ModelFusion is a library for building AI apps, chatbots, and agents. It provides abstractions for AI models, vector indices, and tools.

- Type inference and validation: ModelFusion uses TypeScript and Zod to infer types wherever possible and to validate model responses.

- Flexibility and control: AI application development can be complex and unique to each project. With ModelFusion, you have complete control over the prompts and model settings, and you can access the raw responses from the models quickly to build what you need.

- No chains and predefined prompts: Use the concepts provided by JavaScript (variables, functions, etc.) and explicit prompts to build applications you can easily understand and control. Not black magic.

- More than LLMs: ModelFusion supports other models, e.g., text-to-image and voice-to-text, to help you build rich AI applications that go beyond just text.

- Integrated support features: Essential features like logging, retries, throttling, tracing, and error handling are built-in, helping you focus more on building your application.

Author here - thanks for the mention! Re publicizing: I can never get any attention for my projects, no matter where I post them. Sites like this one (where I tried posting the project multiple times) feel very gamed to me at this point.

I'm developing Rubberduck, an opensource AI chatbot and tool for Visual Studio Code. It can edit code, explain it, generate tests, diagnose errors, or talk about software development.

I plan to release a v1.0 in the coming days and I'm looking for feedback on what to improve.

Hey :)

As part of a larger project that I'm working on, I've created a playground where you can explore some newer (and older) parts of JS, e.g. the ?? and ?. operators, and see how existing code could be changed to use them.

Would love to hear feedback, in particular since this idea is pretty early :)