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 18, 2025 | AI Agents, Blog, OpenAI, Python
This post “Build a Multi-Agent Assistant in Python with the OpenAI Agents SDK” shows how to build an AI agent that can (a) generate secure passwords, (b) tell the current time, and (c) hand off coding questions to a Python-tutor sub-agent. Along the way,...
by CPI Staff | Aug 16, 2025 | Blog, Microsoft Intune
This post “Manage Windows 11 BYOD Devices with Microsoft Intune” explores what Intune can do for Windows 11 BYOD, its benefits and disadvantages, and the steps to implement and onboard personal Windows 11 devices. In the modern workplace, flexibility is no...
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...