forked from saasify-sh/synopsis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
saasify.json
115 lines (115 loc) · 3.54 KB
/
saasify.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "synopsis",
"description": "AI-powered content extraction and summarization for webpages and articles.",
"alias": "synopsis",
"services": [
{
"src": "./src/summarize.ts",
"examples": [
{
"name": "The Onion 1",
"description": "Summarizes an Onion article",
"input": {
"url": "https://www.theonion.com/fun-toy-banned-because-of-three-stupid-dead-kids-1819565691"
}
},
{
"name": "The Onion 2",
"description": "Summarizes an Onion article",
"input": {
"url": "https://local.theonion.com/plan-to-get-laid-at-dragoncon-2001-fails-1819566152"
}
},
{
"name": "The Onion 3",
"description": "Summarizes an Onion article",
"input": {
"url": "https://www.theonion.com/everyone-involved-in-pizzas-preparation-delivery-purc-1819564897"
}
},
{
"name": "Wait But Why",
"description": "Summarizes a blog post",
"input": {
"url": "https://waitbutwhy.com/2015/01/artificial-intelligence-revolution-1.html"
}
}
]
},
{
"src": "./src/detail.ts",
"examples": [
{
"name": "The Onion",
"input": {
"url": "https://www.theonion.com/everyone-involved-in-pizzas-preparation-delivery-purc-1819564897"
}
}
]
},
{
"src": "./src/extract.ts",
"examples": [
{
"name": "The Onion",
"input": {
"url": "https://www.theonion.com/everyone-involved-in-pizzas-preparation-delivery-purc-1819564897"
}
}
]
}
],
"amountPerBase": 1000,
"amountPerRequest": 2,
"amountPerCompute": 0,
"amountPerBandwidth": 0,
"noAuthRateLimit": {
"requests": true,
"requestsInterval": 3600,
"requestsMaxPerInterval": 10
},
"saas": {
"name": "synopsis",
"heading": "**Summarize articles automagically.**",
"subheading": "AI-powered content extraction and summarization for webpages and articles.",
"repo": "https://github.com/saasify-sh/synopsis",
"logo": "./media/logo.svg",
"favicon": "./media/favicon.ico",
"features": [
{
"name": "AI Web Extraction",
"desc": "Our AI powered engine extracts the main content from any website with ease.",
"icon": "media/icons/ai.svg"
},
{
"name": "Summarization",
"desc": "Easily summarize the main content of any website via URL, raw text, or HTML.",
"icon": "media/icons/body.svg"
},
{
"name": "Get Going Fast",
"desc": "Try out the REST API for FREE and then sign up with your GitHub account and Stripe.",
"icon": "media/icons/developer_activity.svg"
},
{
"name": "Cost Effective",
"desc": "Building on top of serverless functions means you'll only pay for the API calls you actually use.",
"icon": "media/icons/stripe.svg"
},
{
"name": "Open Source",
"desc": "Check out the source on [GitHub](https://github.com/saasify-sh/synopsis)!",
"icon": "media/icons/code_review.svg"
}
],
"theme": {
"name": "waves",
"backgroundImage": "https://images.unsplash.com/photo-1495020689067-958852a7765e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=3450&q=80",
"buttonStyle": "rounded",
"color": "#2097e2",
"wave": false,
"gradientDark": true,
"codeBlockDark": true
}
}
}