Fresh code drop

Search by semantic similarity

PHP

Laravel 13 API example based on official Laravel documentation. Source: https://laravel.com/docs/13.x/releases#semantic-vector-search

PHP
CodeSnap // free canvas

Search by semantic similarity

<?php

use Illuminate\Support\Facades\DB;

$articles = DB::table('articles')
    ->whereVectorSimilarTo('embedding', $query)
    ->limit(8)
    ->get();

// Further reading: https://laravel.com/docs/13.x/releases#semantic-vector-search

Turn your code into a post.Five templates are free—no account needed.

Remix this snap