Skip to content

Commit

Permalink
Remove curly brackets from img tag
Browse files Browse the repository at this point in the history
  • Loading branch information
eLQeR committed Oct 14, 2024
1 parent e6f5550 commit b4e1839
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions blog/content/posts/my-second-post/my-second-post.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
+++
title = 'Prompt Engineering through Structured Instructions and Advanced Techniques'
date = 2024-10-10T11:59:14+03:00
draft = true
draft = false
author = 'Yaroslav Biziuk'
+++

Expand All @@ -22,10 +22,10 @@ figure tag format:
{{< figure src="img_1.png" title="Назва зображення" >}}

img tag format (absolute link):
{{< img src="/images/img_1.png" alt="Опис зображення" >}}
< img src="/images/img_1.png" alt="Опис зображення" >

img tag format (relative link):
{{< img src="img_1.png" alt="Опис зображення" >}}
< img src="img_1.png" alt="Опис зображення" >

# 3. The "Ask Before Answer" Technique
The "Ask Before Answer" technique is particularly effective when optimizing prompts to reduce the occurrence of hallucinations. By prompting the LLM to seek clarification before resolving a task, we can preempt misunderstandings that might lead to incorrect answers.
Expand Down
2 changes: 1 addition & 1 deletion blog/content/posts/my-third-post/third-post.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
+++
title = 'Third Post'
date = 2024-10-14T12:35:30+03:00
draft = true
draft = false
+++


Expand Down

0 comments on commit b4e1839

Please sign in to comment.