Create Podscan 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 Podcast Episodes',
type: FeedTypes.Search,
search: {
type: SearchServiceTypes.Podscan,
text: 'artificial intelligence machine learning',
readLimit: 25,
},
// Optional: add workflow for content processing
// workflow: { id: workflow.createWorkflow.id }
});
console.log(`Created Podscan feed: ${feed.createFeed.id}`);Configuration
What Gets Indexed
Use Cases
What Makes Podscan Special
Search Tips
Related
Last updated