In June, OpenAI announced that third-party applications’ APIs can be passed into the GPT model, opening up a wide range of possibilities for creating specialized agents. Our team decided to write our own chat for working with GPT4 from OpenAI and other ML/LLM models with the ability to customize for the company’s internal needs.
Building Machine Learning-Enabled Web Applications with Django and Scikit-Learn Introduction
Machine Learning (ML) has become an integral part of modern web applications due to its ability to improve user experiences, streamline processes, and make data-driven decisions.
Integrating GraphQL into Django
GraphQL is a query language for APIs and a runtime for fulfilling those queries with your existing data, providing a complete and understandable description of the data in your API …
Building Rest API With Django Using Django Rest Framework and Django Rest Auth
Building Rest API seems to be complex when trying to achieve this on your own with Django, thanks to the Django Rest framework project which has come to reduce the complexity.
Dockerizing Django with Postgres, Redis and Celery
In this article, we are going to build a dockerized Django application with Redis, celery, and Postgres to handle asynchronous tasks. Basically, the main idea here is to configure Django with docker containers, especially with Redis and celery.