HackerTrans
TopNewTrendsCommentsPastAskShowJobs

ajhai

no profile record

Submissions

Langrocks: Open-Source Toolchain with Computer Access and Browser for LLM Agents

langrocks.com
2 points·by ajhai·2 tahun yang lalu·0 comments

Show HN: Langrocks – tools like computer access, browser etc., for LLM agents

github.com
3 points·by ajhai·2 tahun yang lalu·0 comments

[untitled]

1 points·by ajhai·2 tahun yang lalu·0 comments

Build No-Code Generative AI Apps with Ollama, Llama3 and LLMStack

docs.trypromptly.com
4 points·by ajhai·2 tahun yang lalu·0 comments

Show HN: Compare Groq and Llama-3-70B with GPT-4 Turbo

trypromptly.com
7 points·by ajhai·2 tahun yang lalu·0 comments

Realtime Avatars with Retrieval Augmented Generation

docs.trypromptly.com
1 points·by ajhai·2 tahun yang lalu·0 comments

Realtime Avatars with RAG [video]

youtube.com
1 points·by ajhai·2 tahun yang lalu·1 comments

Realtime Avatars with Retrieval Augmented Generation

llmstack.ai
3 points·by ajhai·2 tahun yang lalu·0 comments

comments

ajhai
·tahun lalu·discuss
https://x.com/ajhai/status/1899528923303809217 something I have been working on for a few months now.
ajhai
·tahun lalu·discuss
It is inference latency most of the time. These VLA models take in an image + state + text and spit out a set of joint angle deltas.

Depending on the model being used, we may get just one set of joint angle deltas or a series of them. In order to be able to complete a task, it will need to capture images from the cameras, current joint angles and send them to the model along with the task text to get the joint angle changes we will need to apply. Once the joint angles are updated, we will need to check if the task is complete (this can come from the model too). We run this loop till the task is complete.

Combine this with the motion planning that has to happen to make sure the joint angles we are getting do not result in colliding with the surroundings and are safe, results in overall slowness.
ajhai
·tahun lalu·discuss
Building a wheeled robot with arms to help automate household chores - https://x.com/ajhai/status/1891933005729747096

I have been working with LLMs and VLMs to automate browser based workflows among other things for the last couple of years. Given how good the vision models have gotten lately, the perception problem is solved to level where it opens up a lot of possibilities. Manipulation is not generally solved yet but there is a lot of activity in the field and there are promising approaches to solve (OpenVLA, π0). Given these, I'm trying to build an affordable robot that can help around with household chores using language and vision models. Idea is to ship capable enough hardware that can do a few things really well with the currently available models and keep upgrading the AI stack as manipulation models get better over time.
ajhai
·2 tahun yang lalu·discuss
I've tested Q4 on M1 and it works though the quality may not likely be the same as you'd expect as others have pointed out on the issue.
ajhai
·2 tahun yang lalu·discuss
You can already run these models locally with Ollama (ollama run llama3.1:latest) along with at places like huggingface, groq etc.

If you want a playground to test this model locally or want to quickly build some applications with it, you can try LLMStack (https://github.com/trypromptly/LLMStack). I wrote last week about how to configure and use Ollama with LLMStack at https://docs.trypromptly.com/guides/using-llama3-with-ollama.

Disclaimer: I'm the maintainer of LLMStack
ajhai
·2 tahun yang lalu·discuss
You can actually do this with LLMStack (https://github.com/trypromptly/LLMStack) quite easily in a no-code way. Put together a guide to use LLMStack with Ollama last week - https://docs.trypromptly.com/guides/using-llama3-with-ollama for using local models. It lets you load all your files as a datasource and then build a RAG app over it.

For now it still uses openai for embeddings generation by default and we are updating that in the next couple of releases to be able to use a local model for embedding generation before writing to a vector db.

Disclosure: I'm the maintainer of LLMStack project
ajhai
·2 tahun yang lalu·discuss
If anyone is looking to try it out quick without local installation, we added Llama-8B model to Promptly playground. Please check it out at https://trypromptly.com/playground.
ajhai
·2 tahun yang lalu·discuss
Sorry missed this. It was hidden behind login before. It should now be reachable.
ajhai
·2 tahun yang lalu·discuss
If you are looking to play with the model without installing it locally, we've added it our playground at https://trypromptly.com/playground.
ajhai
·2 tahun yang lalu·discuss
Put together a guide on how to do this with your own avatar and posted at https://news.ycombinator.com/item?id=39053304
ajhai
·2 tahun yang lalu·discuss
We can get a lot done with vector db + RAG before having to finetune or custom models. There are a lot of techniques to improve RAG performance. Captured a few of them a while back at https://llmstack.ai/blog/retrieval-augmented-generation.
ajhai
·2 tahun yang lalu·discuss
We have recently added support to query data from SingleStore to our agent framework, LLMStack (https://github.com/trypromptly/LLMStack). Out of the box performance performance when prompting with just the table schemas is pretty good with GPT-4.

The more domain specific knowledge needed for queries, the harder it has gotten in general. We've had good success `teaching` the model different concepts in relation to the dataset and giving it example questions and queries greatly improved performance.
ajhai
·3 tahun yang lalu·discuss
Gemini Pro compares to GPT 3.5.. their biggest model that competes with GPT-4 is called Gemini Ultra and they say that's coming early next year.
ajhai
·3 tahun yang lalu·discuss
https://github.com/trypromptly/LLMStack - started working on this as a wrapper over OpenAI's endpoints for another product and it gradually became this.

Another project I worked on for my own use was a network isolated, lightweight video monitoring system. Around 5 years ago, I was looking to install a camera in our living room. I couldn't find anything I trusted that worked completely offline without some companion app pinging their servers. So I bought a basic IP camera on Amazon that supports rtsp and a raspberry pi. Created a fenced wifi network and added the camera to it.

Had an FFmpeg process read camera stream on demand and write to local buffers. Wrote a simple python server to listen for incoming connections on a different interface and stream the video on API requests. Then built an android app that talks to the python server to stream video on demand.

Also installed motion (https://github.com/Motion-Project/motion) on raspberry pi to detect motion in the video and store those snippets to local storage. With motion running, the adapter I was using wasn't delivering enough power resulting in storage occasionally unmounting and raspberry pi restarting taking the camera system offline. With motion detection disabled, the entire setup ran reliably for many years.
ajhai
·3 tahun yang lalu·discuss
This will hopefully improve the startup times for FFmpeg when streaming from virtual display buffers. We use FFmpeg in LLMStack (low-code framework to build and run LLM agents) to stream browser video. We use playwright to automate browser interactions and provide that as tool to the LLM. When this tool is invoked, we stream the video of these browser interactions with FFmpeg by streaming the virtual display buffer the browser is using.

There is a noticeable delay booting up this pipeline for each tool invoke right now. We are working on putting in some optimizations but improvements in FFmpeg will definitely help. https://github.com/trypromptly/LLMStack is the project repo for the curious.
ajhai
·3 tahun yang lalu·discuss
I've been using Django as my main choice for web projects for over ten years. The reason I like it so much is because it comes with a lot of built-in features that one needs to ship web projects to production. For example, I was first attracted to Django because of its admin interface and its straightforward views and templating system.

Over the years, Django has kept up with changes in web development. An example of this is when database migrations, which used to be a separate project, were integrated into Django itself. The Django community is also strong with great ecosystem projects like DRF for APIs, Django Channels for real-time features, and social-auth for social sign-ins.

My recent use of Django is in (https://github.com/trypromptly/LLMStack). We use Django Channels for WebSocket support, DRF for APIs, and ReactJS for the frontend.