Spaces:
Running
Running
File size: 2,410 Bytes
372531f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
import React from 'react';
import clsx from 'clsx';
import { Link } from 'react-router-dom';
import styles from './HomepageFeatures.module.css';
const FeatureList = [
{
title: 'GPT Researcher',
Svg: require('../../static/img/gptr-logo.png').default,
docLink: './docs/gpt-researcher/getting-started/getting-started',
description: (
<>
GPT Researcher is an open source autonomous agent designed for comprehensive online research on a variety of tasks.
</>
),
},
/*{
title: 'Tavily Search API',
Svg: require('../../static/img/tavily.png').default,
docLink: './docs/tavily-api/introduction',
description: (
<>
Tavily Search API is a search engine optimized for LLMs, optimized for a factual, efficient, and persistent search experience
</>
),
},*/
{
title: 'Multi-Agent Assistant',
Svg: require('../../static/img/multi-agent.png').default,
docLink: './docs/gpt-researcher/multi_agents/langgraph',
description: (
<>
Learn how a team of AI agents can work together to conduct research on a given topic, from planning to publication.
</>
),
},
{
title: 'Examples and Demos',
Svg: require('../../static/img/examples.png').default,
docLink: './docs/examples/examples',
description: (
<>
Check out GPT Researcher in action across multiple frameworks and use cases such as hybrid research and long detailed reports.
</>
),
},
];
function Feature({Svg, title, description, docLink}) {
return (
<div className={clsx('col col--4')}>
<div className="text--center">
{/*<Svg className={styles.featureSvg} alt={title} />*/}
<img src={Svg} alt={title} height="60"/>
</div>
<div className="text--center padding-horiz--md">
<Link to={docLink}>
<h3>{title}</h3>
</Link>
<p>{description}</p>
</div>
</div>
);
}
export default function HomepageFeatures() {
return (
<section className={styles.features}>
<div className="container" style={{marginTop: 30}}>
<div className="row" style={{justifyContent: 'center'}}>
{FeatureList.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
</section>
);
}
|