Live data from Hacker News

Show HN: DocsGPT, open-source documentation assistant, fully aware of libraries

github.com

71–80 of 100 posts

Re: Show HN: DocsGPT, open-source documentation assistant, fully aware of libraries

#71

This is really the quality of projects we're upvoting? This is a python script that calls another API.

Upvoting serves as a bookmark too, and people will often upvote for the discussion more than the original post.

Re: Show HN: DocsGPT, open-source documentation assistant, fully aware of libraries

#72

AI to help me read docs does seem somewhat handy but I feel like if there's already documentation it's really just gonna save a couple of minutes? I will be much more excited when AI can explain undocumented systems to me. This feels like it can't be far away, and it will be a game changer. I guess for this to be helpful it is gonna need out-of-band info, but maybe just the git log would be a pretty good start. If yo…

Step 1. Is documented systems, plain code is next. Thank you for your suggestion, great ideas!

Re: Show HN: DocsGPT, open-source documentation assistant, fully aware of libraries

#73
post #5

Where can one go to learn how to build something like this with chatgpt? Are people asking a question under the hood? Like “explain these 30 code files to me”

If you want join our discord and i can talk you through it

Re: Show HN: DocsGPT, open-source documentation assistant, fully aware of libraries

#74

What exactly is it aware of though? I guess it's aware of certain packages in certain languages? I asked how to create an AWS API gateway with terraform. It said: > You can use the terraform-aws-api-gateway module. This module provides a set of Terraform resources for creating and managing an API gateway. It allows you to define the API gateway, its resources, methods, and stages. It also provides support for custom…

I didnt add any memory of the current conversation yet... sorry

Re: Show HN: DocsGPT, open-source documentation assistant, fully aware of libraries

#75

This is really the quality of projects we're upvoting? This is a python script that calls another API.

Upvoting serves as a bookmark too, and people will often upvote for the discussion more than the original post.

You could use the favorite button.

Re: Show HN: DocsGPT, open-source documentation assistant, fully aware of libraries

#76
post #57

Earlier quoted context omitted.

I've already built this and you can use this as a guide, being PII we just need to swap openai for a model on huggingface.co, this let's you do the question answering part run locally. https://dagster.io/blog/chatgpt-langchain

But it still requires uploading sensitive data to the cloud. I want it completely local, I ain't uploading things like my passport and birth certificate to OpenAI.

Bro you see the part where I talk about swapping out openai. You can download ML models from the site hugging face.co, if you read this link you should be well on your way to building something today https://github.com/huggingface/transformers#quick-tour

Re: Show HN: DocsGPT, open-source documentation assistant, fully aware of libraries

#77
post #54
post #11

Yesterday, an undergraduate from Sri Lanka released KnowledgeGPT[1] which allows you to upload your docs and get answers from ChatGPT. It also uses FAISS so I'm wondering if DocsGPT is somehow related or inspired by the former. It also appears the Github library for DocsGPT was created shortly after the release of KnowledgeGPT. 1: https://github.com/mmz-001/knowledge_gpt

Posted Jan 9th insert slowpoke meme https://dagster.io/blog/chatgpt-langchain

Exactly what I've been looking for. It's a very easy to follow and understand tutorial, and it uses GPT-3 API instead of ChatGPT.

Thanks so much!

Re: Show HN: DocsGPT, open-source documentation assistant, fully aware of libraries

#78
post #75

Earlier quoted context omitted.

Upvoting serves as a bookmark too, and people will often upvote for the discussion more than the original post.

You could use the favorite button.

Favorites are public, upvotes are private

Re: Show HN: DocsGPT, open-source documentation assistant, fully aware of libraries

#79

Seeing https://github.com/arc53/docsgpt/blob/main/application/combi... is just fascinating to me. It's absolutely where this all is headed, but to see it as source code evokes something in me.

I would try to fine-tune GPT such that I don't need to repeat the first part for every query. Since OpenAI is billed by the token (a thousand tokens are about 750 words), it makes sense to fine-tune once then only submit the changing part.

Caveat emptor: I didn't try this out yet. No idea whether this would work.

Re: Show HN: DocsGPT, open-source documentation assistant, fully aware of libraries

#80
post #76

Earlier quoted context omitted.

But it still requires uploading sensitive data to the cloud. I want it completely local, I ain't uploading things like my passport and birth certificate to OpenAI.

Bro you see the part where I talk about swapping out openai. You can download ML models from the site hugging face.co, if you read this link you should be well on your way to building something today https://github.com/huggingface/transformers#quick-tour

Oh, I understood it as replacing it in the future, thanks!
Post reply on HN