wwf
3 天以前 a430284aa21e3ae1f0d5654e55b2ad2852519cc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import type { CrawlResultItem } from '@/models/datasets'
 
const result: CrawlResultItem[] = [
  {
    title: 'Start the frontend Docker container separately',
    markdown: 'Markdown 1',
    description: 'Description 1',
    source_url: 'https://example.com/1',
  },
  {
    title: 'Advanced Tool Integration',
    markdown: 'Markdown 2',
    description: 'Description 2',
    source_url: 'https://example.com/2',
  },
  {
    title: 'Local Source Code Start | English | Dify',
    markdown: 'Markdown 3',
    description: 'Description 3',
    source_url: 'https://example.com/3',
  },
]
 
export default result