0

I am trying to learn how to code chatbots; in what course can I learn that?

I'm pretty confused; I don't know which courses teach A.I..

21st Oct 2024, 8:38 PM
Biliana Yordzheva
Biliana Yordzheva - avatar
1 Answer
+ 2
None of the courses here teach that specifically, not even the AI training. The AI training here teaches you about how to write prompts and what are popular uses for AI tools. You need to learn to program the AI outside of SoloLearn. I actually learned by asking ChatGPT to teach me. Modern AI chatbots use a large language model "LLM" to interpret full sentences and tries to feed you back information. For that, you can do this in whatever language you like. But what you need is to use the API provided by the AI system. OpenAI is the system behind ChatGPT. It's not free, but it's cheap. You can register at OpenAI.com and setup a developer account. You get an API key. Then from there you can use the LLM built in to interpret pretty much anything ChatGPT can do. It's very powerful. If you need the ChatBot to know things that are not already publicly known on the Internet, such as how to use your homemade software, you need to train it. Training is in the form of JSON files with prompts and responses. It integrates that into what it already knows. I wrote something like this for a proprietary airline software system that is not known publicly. Now, using my tool, you can learn how to construct airline reservations, check flights, and a bunch of other stuff that's only known internally to our company.
22nd Oct 2024, 12:17 AM
Jerry Hobby
Jerry Hobby - avatar