Create Exa Search Feed
User Intent
Operation
Code Example (TypeScript)
import { Graphlit } from 'graphlit-client';
import { FeedTypes, SearchServiceTypes } from 'graphlit-client/dist/generated/graphql-types';
const graphlit = new Graphlit();
const feed = await graphlit.createFeed({
name: 'AI Research Papers',
type: FeedTypes.Search,
search: {
type: SearchServiceTypes.Exa,
text: 'machine learning transformers research',
readLimit: 20,
},
// Optional: add workflow for content processing
// workflow: { id: workflow.createWorkflow.id }
});
console.log(`Created Exa search feed: ${feed.createFeed.id}`);Configuration
What Makes Exa Different
Use Cases
Exa vs Tavily
⚠️ ExaCode Limitation
Related
Last updated