Live data from Hacker News

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

github.com

1–10 of 100 posts

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

#2
Very cool, I'm glad that you provided some instructions on how to use this on a different set of docs.

Would this support Markdown format? Context, I'm using Hugo with Markdown + injected code snippets. Might need to actually crawl the site...

Do you think including Slack Q&As in training would help too?

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

#3
post #2

Very cool, I'm glad that you provided some instructions on how to use this on a different set of docs. Would this support Markdown format? Context, I'm using Hugo with Markdown + injected code snippets. Might need to actually crawl the site... Do you think including Slack Q&As in training would help too?

Yeah, its still very early preview. we are working on making sure parsing works well on different formats. But for now you can make sure it looks well in txt. Would love to see you in our discord. Very soon it will support different formats, so make sure you are updated.

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

#6
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”

You could probably ask ChatGPT how to get started with GPT, but I think a lot of people are building apps taking advantage of GPT's Fine Tuning ability. https://platform.openai.com/docs/guides/fine-tuning

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

#7

What are you doing on top of langchain? More details would be nice.

How to create the vector store: this gets passed along (i assume) in the longchain context:

https://github.com/arc53/docsgpt/blob/main/scripts/ingest_rs...

This is the prompt that is used: https://github.com/arc53/docsgpt/blob/main/application/combi...

And this is where it calls the openai. Looks pretty straightforward. https://github.com/arc53/docsgpt/blob/main/application/app.p...

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

#8
post #6
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”

You could probably ask ChatGPT how to get started with GPT, but I think a lot of people are building apps taking advantage of GPT's Fine Tuning ability. https://platform.openai.com/docs/guides/fine-tuning

If I take advantage of this for allowing my customers to ask questions about our product documentation, how do I limit questions to questions about my product documentation? I don't want to be paying Open OPI for questions unrelated to my product.

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

#9
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 domain names, API keys, and usage plans.

I followed up with "Show me the hcl configuration for it."

> There is no hcl configuration for it.

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

#10

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…

To be fair, this sounds like some junior engineer interviews I've conducted
Post reply on HN