by CPI Staff | Aug 22, 2025 | AI, Blog, LLM
in this blog post “What is Supervised Fine-Tuning (SFT)” we will unpack what supervised fine-tuning is, when it’s the right tool, how it works under the hood, and how to run a robust SFT project end-to-end—from data to deployment. What is Supervised...
by CPI Staff | Aug 21, 2025 | AI, AI Agents, Blog, OpenAI, Python
This OpenAI post “Build Git MCP Server with the OpenAI Agents SDK” shows how to implement an MCP Server into an agent. Table of contentsWhat’s the Git MCP server?Why MCP with the Agents SDK?Packages you needComponents in the codeTypes of MCP servers...
by CPI Staff | Aug 20, 2025 | AI, AI Agents, Blog, OpenAI, Python
This OpenAI Agent post “Building Guardrails in the OpenAI Agent SDK” will explain how to implement a gurdrail system that protact the Agent from misuse. Table of contentsWhat Are Guardrails?Example: A Python-Only GuardrailIntegrating Guardrails Into the...
by CPI Staff | Aug 19, 2025 | AI, Blog, Llama
Want a quick win with multimodal AI? In this post, you’ll build a tiny Python app that uses a Llama vision model to look at an image and tell you what it is. We’ll use Ollama to run the model locally (no paid keys required), then call it from Python. By the end,...
by CPI Staff | Aug 14, 2025 | AI, Blog, OpenAI, Python, WordPress
This blog post, “Turn WordPress Posts into “Voice Blogs” with Python + OpenAI TTS” will show you how to pull posts from a WordPress site via the REST API, converts the article content to speech using OpenAI’s Text-to-Speech (TTS), saves an MP3, and...
by CPI Staff | Aug 13, 2025 | AI, Blog, LLM
In this post, we’ll explore strategies to control randomness in LLMs, discuss trade-offs, and provide some code examples in Python using the OpenAI API. Large Language Models (LLMs) like GPT-4, Claude, or LLaMA are probabilistic by design. They generate text by...