@extends('layouts.simple') @section('body')
@if($results)

Results

LLM Output

{{ $results['llm_result'] }}

Entity Matches

@foreach($results['entity_matches'] as $match)
{{ $match['entity_type'] }}:{{ $match['entity_id'] }}; Distance: {{ $match['distance'] }}
match text
{{ $match['text'] }}
@endforeach @endif
@stop