by cryptopensioner | Sep 27, 2023 | AI
Large language models (LLMs) have the potential to revolutionize many industries and applications, but they can also be complex and challenging to use. AutoGen, a new framework developed by Microsoft Research, makes it easier than ever to build and deploy LLM...
by cryptopensioner | Jul 6, 2023 | Programming
There are many “AI coding” tools, including GitHub’s Copilot – but none of them are able to work with multiple files at a time. AIDER project can! It is a “GPT-powered coding in your terminal”. GitHub:...
by cryptopensioner | Jun 19, 2023 | ChatGPT as Python Teacher
JSON (JavaScript Object Notation) is a popular data interchange format that is widely used for data storage and transmission. Python provides built-in support for working with JSON data through the json module. Let’s explore working with JSON in Python: import...
by cryptopensioner | Jun 19, 2023 | ChatGPT as Python Teacher
Databases are a fundamental component of many applications, and Python provides powerful libraries for working with databases. In this lesson, we will focus on working with relational databases using the Structured Query Language (SQL) and the SQLite database engine....
by cryptopensioner | Jun 19, 2023 | ChatGPT as Python Teacher
Decorators are a powerful feature in Python that allow us to modify or enhance the behavior of functions or classes without directly modifying their source code. Decorators are implemented using the concept of functions as first-class objects and function closures....