From d8d092cba515aa0d9f1f9ded40ecd713bbc8461f Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Tue, 24 Jun 2025 06:54:04 -0400 Subject: [PATCH 1/2] feat(meta): Add support for 0.14.0 of client + realtime facade. (#156) * build: move to minimum 0.14.0 of client * feat: add realtime facade --- composer.json | 2 +- src/Facades/OpenAI.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 0a47652..60cd36b 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,7 @@ "php": "^8.2.0", "guzzlehttp/guzzle": "^7.9.3", "laravel/framework": "^11.29|^12.12", - "openai-php/client": "^0.13.0" + "openai-php/client": "^0.14.0" }, "require-dev": { "laravel/pint": "^1.22.0", diff --git a/src/Facades/OpenAI.php b/src/Facades/OpenAI.php index 94c69a4..09f6aaf 100644 --- a/src/Facades/OpenAI.php +++ b/src/Facades/OpenAI.php @@ -23,6 +23,7 @@ * @method static \OpenAI\Resources\Images images() * @method static \OpenAI\Resources\Models models() * @method static \OpenAI\Resources\Moderations moderations() + * @method static \OpenAI\Resources\Realtime realtime() * @method static \OpenAI\Resources\Responses responses() * @method static \OpenAI\Resources\Threads threads() * @method static \OpenAI\Resources\VectorStores vectorStores() From cee51d2502c1ff50580269db5a773cd84be76066 Mon Sep 17 00:00:00 2001 From: Connor Tumbleson Date: Tue, 24 Jun 2025 06:56:22 -0400 Subject: [PATCH 2/2] release: v0.14.0 (#157) --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cd1c04c..37da658 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## v0.14.0 (2025-06-24) +### Added +- Add facade for `realtime`. ([#156](https://github.com/openai-php/laravel/pull/156)) + +### Changed +- Changed underlying `openai/client` package version from 0.13.0 to 0.14.0 + ## v0.13.0 (2025-05-14) ### Added - Add facade for `responses` ([#147](https://github.com/openai-php/laravel/pull/147))