Skip to content

Commit

Permalink
Draft
Browse files Browse the repository at this point in the history
  • Loading branch information
Shan-Weaviate committed Jan 8, 2025
1 parent 312e70b commit f4869cc
Show file tree
Hide file tree
Showing 4 changed files with 601 additions and 0 deletions.
85 changes: 85 additions & 0 deletions src/components/Signup/RAG/index.jsx
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>
</>
);
}
Loading

0 comments on commit f4869cc

Please sign in to comment.