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 (
{/**/} {title}

{title}

{description}

); } export default function HomepageFeatures() { return (
{FeatureList.map((props, idx) => ( ))}
); }