Skip to content

Commit

Permalink
chore(docs): add YT link
Browse files Browse the repository at this point in the history
  • Loading branch information
mcharytoniuk committed Apr 24, 2024
1 parent 2b1469b commit 102ef01
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
15 changes: 8 additions & 7 deletions docs/pages/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,14 @@ description: >
<span class="homepage-gallery__version">v0.30.0</span>
</a>
</h4>
<p>
Extract strictly formatted data from user's fuzzy input.
</p>
<a
class="homepage-gallery__item__learnmore"
href="/docs/features/ai/server/llama-cpp/extractors/"
>Learn More</a>
<iframe
src="https://www.youtube.com/embed/Jz-p6Bhcm54"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe>
</li>
<li class="homepage-gallery__item">
<h4>
Expand Down
5 changes: 5 additions & 0 deletions src/YesNoMaybe.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ public function isCertain(): bool
return self::Maybe !== $this;
}

public function isMaybe(): bool
{
return self::Maybe === $this;
}

public function isNo(): bool
{
return self::No === $this;
Expand Down

0 comments on commit 102ef01

Please sign in to comment.