This post provides a comprehensive guide on getting started with OpenAI APIs, covering setting up an API key, installing OpenAI’s Python package, and using GPT-4o-mini for text generation. It also explores parameters tweaking, advanced uses like summarization and translation, and tips for fine-tuning models, handling rate limits, costs, bias, and caching responses.
Category: Coding
Patterns – Strangler Pattern
When working with old software solutions you will inevitably come up against the need to modernize them. Realistically, this is … More
SOLID Design Principles
SOLID Principles are seen throughout the development world. We run through the principles to give a super high level view… with memes.
4 Pillars of Object-Oriented Programming
Object-Oriented Programming (OOP) is a common sight in pretty much all modern developer roles and it is defined with 4 pillars that hold its definition together. Abstraction, Encapsulation, Inheritance and Polymorphism.
DRY – Don’t Repeat Yourself
DRY or Don’t Repeat Yourself is a staple of modern coding. Learn about the principle here and star your coding journey.