Does anyone have any pointers as to how I can train ChatGPT on my personal corpus and create my own personal assistant?
Just shove all your information in the prompt. I assume that's what these guys are doing anyway. ChatGPT doesn't yet have any API, but you can use text-davinci-003, which does have an API and is functionally identical. The API costs for a large prompt are quite high, and since you have to repeat it with every single query, your costs can go up very quickly.
CustomGPT
21–30 of 33 posts
Re: CustomGPT
#22Am I too harsh for expecting that in 2023, a company actively signing up customers for a cloud-based service should have enough autoscaling so that getting to the front page of HN doesn't overload the landing page? It just doesn't give me much faith that the actual product will be stable enough to use. Especially just giving a generic 5XX error from nginx is a bad sign. Edit: did this get manually knocked off the fro…
Re: CustomGPT
#23Am I too harsh for expecting that in 2023, a company actively signing up customers for a cloud-based service should have enough autoscaling so that getting to the front page of HN doesn't overload the landing page? It just doesn't give me much faith that the actual product will be stable enough to use. Especially just giving a generic 5XX error from nginx is a bad sign. Edit: did this get manually knocked off the fro…
Re: CustomGPT
#24Am I too harsh for expecting that in 2023, a company actively signing up customers for a cloud-based service should have enough autoscaling so that getting to the front page of HN doesn't overload the landing page? It just doesn't give me much faith that the actual product will be stable enough to use. Especially just giving a generic 5XX error from nginx is a bad sign. Edit: did this get manually knocked off the fro…
Re: CustomGPT
#25Am I too harsh for expecting that in 2023, a company actively signing up customers for a cloud-based service should have enough autoscaling so that getting to the front page of HN doesn't overload the landing page? It just doesn't give me much faith that the actual product will be stable enough to use. Especially just giving a generic 5XX error from nginx is a bad sign. Edit: did this get manually knocked off the fro…
Let's be fair, ChatGPT has had issues with being overloaded ever since its initial release, and they're still not entirely fixed.
Re: CustomGPT
#26Founders really need to start doing 10 minutes of due diligence to ensure that their sites won't crash and burn under moderate Hacker News or Product Hunt traffic before posting at these places. You get one shot at front page success, and are now losing valuable impressions because people can't even open your website. And you not being able to keep a marketing page up and running doesn't really give me confidence in…
I mean if course you should, because otherwise why post on HN, but if it's 'just' a side project, I understand why you don't want to spend time configuring Cloudflare.
Re: CustomGPT
#27Earlier quoted context omitted.
Just shove all your information in the prompt. I assume that's what these guys are doing anyway. ChatGPT doesn't yet have any API, but you can use text-davinci-003, which does have an API and is functionally identical. The API costs for a large prompt are quite high, and since you have to repeat it with every single query, your costs can go up very quickly.
davinci-003 has a 4k tokens cap, you cannot just 'shove all your information in the prompt.' Can parallelize but then rate limits become a problem. Really curious to hear how these guys are handling it.
https://langchain.readthedocs.io/en/latest/modules/chains/co...
Re: CustomGPT
#28Does anyone have any pointers as to how I can train ChatGPT on my personal corpus and create my own personal assistant?
https://relevanceai.com/blog/use-all-of-your-blog-posts-and-...
As far as the next step...
Google allows you to export your email data. Ideally, you could download that data and upload it to a service that looked at original messages and your replies (and replies to replies) and trained on that file without having to make sense of what Google gives you.
If that was working, then you could have it reply to emails for you.
Re: CustomGPT
#29Am I too harsh for expecting that in 2023, a company actively signing up customers for a cloud-based service should have enough autoscaling so that getting to the front page of HN doesn't overload the landing page? It just doesn't give me much faith that the actual product will be stable enough to use. Especially just giving a generic 5XX error from nginx is a bad sign. Edit: did this get manually knocked off the fro…
Let's be fair, ChatGPT has had issues with being overloaded ever since its initial release, and they're still not entirely fixed.
Re: CustomGPT
#30Does anyone have any pointers as to how I can train ChatGPT on my personal corpus and create my own personal assistant?
Check OpeanAI's tutorials [1] and cookbook [2]. Or try LangChain [3], which abstracts a lot of the work. [1] - https://platform.openai.com/docs/tutorials [2] - https://github.com/openai/openai-cookbook [3] - https://github.com/hwchase17/langchain