Viewing profile — llmllmllm
llmllmllm
HN member- Joined
- Tue, Jul 18, 2023, 7:55 PM UTC
- HN karma
- 21
- Public activity
- 29 items
- HN profile
- View on Hacker News ↗
About llmllmllm
No profile information was provided.
Recent public activity
-
comment
Comment #40201672
The UK doesn't have exit checks.
-
comment
Comment #38444379
I just made this after realising that chatgpt 4 now has 32k input context so it's useful to inject multiple files into my prompts easily
- story
-
comment
Comment #38288452
"Show HN is for something you've made that other people can play with. HN users can try it out, give you feedback, and ask questions in the thread." We made it, you can play with i…
-
comment
Comment #38288426
This is an interface that has GPT-4 producing content while also producing images using DALL-E 3, we have integrated them.
-
comment
Comment #38288314
Feedback is great, thank you. I linked to the shared report so that it's obvious what is actually being produced, rather than just a description of it. This is just an example summ…
- story
-
comment
Comment #38168109
While this makes some of what my startup https://flowch.ai does a commodity (file uploads and embeddings based queries are an example, but we'll see how well they do it - chunking …
-
comment
Comment #38009263
I have found success with chunking with 100 tokens, preceeded by the last 10 tokens of the previous chunk, and the first 10 tokens of the next chunk, 120 tokens total. I generate a…
- comment
-
comment
Comment #37640649
Things like this needing to exist are one of the reasons we are working on https://flowch.ai/?ref=hn - the ChatGPT interface is really sub-optimal for work and keeping track of int…
-
story
Show HN: AI Analysis of Bryan Cantrill's Rust Talks [video]
Hi HN, Matt here, founder of https://flowch.ai I just added the ability to add transcripts of YouTube videos to FlowChai, and was pleased with how well it works. In this demo I sho…
-
story
Show HN: ChatGPT Powered Code Analysis
I'm building an AI platform, FlowChai and found a neat use case for it today that I thought would be useful to HN readers. I use GPT4 heavily for writing / editing code, but a majo…
-
comment
Comment #37418798
I'll be curious to see if many people end up subscribed to both this and ChatGPT Pro, are they different enough to both be worth it?
-
comment
Comment #37298489
Very fair, we have demo videos, guides etc planned for the next week or so. As it's a tool that can do many things it's hard to describe. Still a lot to do :) In terms of what make…
-
comment
Comment #37298405
Interesting that they're still centered around Chat as the interface, with https://flowch.ai (our product) we're building it much more around projects and reports, which we think i…
-
comment
Comment #37213152
Learning to leverage LLMs as part of software systems (distinct from LLMs for writing code, that'll be common soon as people catch on and it becomes acceptable to most).
-
comment
Comment #37171169
As part of my testing of https://flowch.ai (which we are developing), I've been uploading multiple PDFs (including scientific papers). I then ask a question and ask it to cite its …
-
comment
Comment #36956826
Its integration with public and private data along with layers of automation allowing its use way beyond chat bots. From individual tool to something that can power large parts of …
-
comment
Comment #36928294
The open source solutions have mental overhead and potentially long term maintenance hassle. Even for people who could set it up, for many $20 is worth not having to deal with it.
-
comment
Comment #36863531
I want to search based on semantic meaning, rather than partial or exact keyword search. I'm using pgvector within postgres, so I get all of the postgres benefits.
-
comment
Comment #36863469
GPT-4 via ChatGPT, mostly for coding and GPT-4 via https://flowch.ai (our tool) for anything that involves my own data (including my own code), or where I want automation, such as …
-
comment
Comment #36852785
As well as heavy LLM use, we're also using vectors (with pgvector) for searching text content which is displayed in a table. Works very well.
-
comment
Comment #36842379
https://flowch.ai (our project) does this and is currently free to use. It doesn't train a custom model but it gets good results. A simple way to do this is to upload your files (P…
-
comment
Comment #36826860
A lot of LLM libraries seem incredibly overhyped. I've found that I'm able to do a lot with the underlying API calls. If you're comfortable with doing API calls in your own code, I…