-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
312e70b
commit f4869cc
Showing
4 changed files
with
601 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
import Link from '@docusaurus/Link'; | ||
import React, { useEffect } from 'react'; | ||
import styles from './styles.module.scss'; | ||
import { css } from 'styled-components'; | ||
|
||
export default function Introduction() { | ||
useEffect(() => { | ||
// Load the external HubSpot form script | ||
const script = document.createElement('script'); | ||
script.src = '//js.hsforms.net/forms/embed/v2.js'; | ||
script.async = true; | ||
script.onload = () => { | ||
if (window.hbspt) { | ||
window.hbspt.forms.create({ | ||
portalId: '8738733', | ||
formId: '870eca82-9147-4753-a021-856a4cd6883e', | ||
target: '#hs-form', | ||
}); | ||
} | ||
}; | ||
document.body.appendChild(script); | ||
}, []); | ||
|
||
return ( | ||
<> | ||
<div className={styles.demoContainer}> | ||
<div className={styles.contentContainer}> | ||
<div className={styles.demoTitle}> | ||
<div className={styles.demoLogo}></div> | ||
</div> | ||
<div className={styles.content}> | ||
<div className={styles.contentSideA}> | ||
<div className={styles.reportImage}></div> | ||
</div> | ||
<div className={styles.contentSideB}> | ||
<span>GUIDE</span> | ||
<h1 classname={styles.headerTag}>Advanced RAG Techniques</h1> | ||
<span className={styles.subTitle}> | ||
A guide on different techniques to improve the performance of | ||
your Retrieval-Augmented Generation applications. | ||
</span> | ||
<div className={styles.signUp}> | ||
<div className={styles.signUpBox}> | ||
<div className={styles.formWrapper}> | ||
<div id="hs-form" className={styles.ebookForm}></div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div className={styles.contentBottom}> | ||
<div> | ||
<h3>About the guide</h3> | ||
<p> | ||
The advanced Retrieval-Augmented Generation (RAG) techniques e-book | ||
provides an overview of different techniques to improve the | ||
performance of your RAG application. It covers techniques along all | ||
stages of the RAG pipeline, including: | ||
</p> | ||
<br></br> | ||
<ul> | ||
<li> | ||
Indexing optimization techniques (data pre-processing, chunking | ||
strategies) | ||
</li> | ||
<li> | ||
Pre-retrieval optimization techniques (query transformation, query | ||
decomposition, query routing) | ||
</li> | ||
<li> | ||
Retrieval optimization techniques (metadata filtering, excluding | ||
vector search outlier, hybrid search, embedding model fine-tuning) | ||
</li> | ||
<li> | ||
Post-retrieval optimization techniques (re-ranking, context | ||
post-processing, prompt engineering, LLM fine-tuning) | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</> | ||
); | ||
} |
Oops, something went wrong.