mirror of
https://github.com/MODSetter/SurfSense.git
synced 2025-09-02 18:49:09 +00:00
- Added support for processing YouTube videos, including transcript extraction and document creation. - Implemented a new background task for adding YouTube video documents. - Enhanced the connector service to search for YouTube videos and return relevant results. - Updated frontend components to include YouTube video options in the dashboard and connector sources. - Added necessary dependencies for YouTube transcript API.
23 lines
No EOL
369 B
TypeScript
23 lines
No EOL
369 B
TypeScript
// Connector sources
|
|
export const connectorSourcesMenu = [
|
|
{
|
|
id: 1,
|
|
name: "Crawled URL",
|
|
type: "CRAWLED_URL",
|
|
},
|
|
{
|
|
id: 2,
|
|
name: "File",
|
|
type: "FILE",
|
|
},
|
|
{
|
|
id: 3,
|
|
name: "Extension",
|
|
type: "EXTENSION",
|
|
},
|
|
{
|
|
id: 4,
|
|
name: "Youtube Video",
|
|
type: "YOUTUBE_VIDEO",
|
|
}
|
|
]; |