Agents
Discover and create custom versions of DocsGPT that combine
instructions, extra knowledge, and any combination of skills.
{/* Premade agents section */}
{/*
Premade by DocsGPT
{Array.from({ length: 5 }, (_, index) => (
))}
*/}
Created by You
{loading ? (
) : userAgents.length > 0 ? (
userAgents.map((agent) => (
))
) : (
You don’t have any created agents yet
)}
);
}
function AgentCard({
agent,
setUserAgents,
}: {
agent: Agent;
setUserAgents: React.Dispatch