Skip to content

Instantly share code, notes, and snippets.

View fului's full-sized avatar

Olaf Klejnstrup-Jensen fului

  • Loyalty Key A/S
  • Denmark
  • X @fului
View GitHub Profile
@fului
fului / OpenAIResponse.php
Last active January 28, 2025 19:55
OpenAI fluent layer for openai-php/laravel
<?php
namespace App\Services;
use Illuminate\Support\Collection;
use JsonSchema\Validator;
use JsonSchema\Constraints\Constraint;
use OpenAI\Responses\Chat\CreateResponse;
use RuntimeException;
@fului
fului / usage.js
Created April 11, 2024 07:04
A way to make fields required in WordPress Gutenberg
useRequiredField(
'label',
__('You need to enter a label to save the post.', TEXTDOMAIN),
label && label.length > 0,
);