pricing page scraper
1.0.0
このプロジェクトは、AIを使用してSaaS製品の価格設定ページを削っています。

このプロジェクトでは、OpenAI GPT-3.5 API(特に効率的で安価なgpt-3.5-turbo )とストリーミングでVercel Edge機能を使用しています。価格ページのコンテンツを取得し、GPT-3.5 APIにプロンプトで送信して、Vercel Edge関数を介してスクレイプし、応答をアプリケーションに戻します。
[
{
"plan_name": "FREE",
"plan_amount": 0,
"currency_code": "USD",
"frequency": "monthly",
"features": [
"2,000 WORDS PER MONTH",
"NO CREDIT CARD REQUIRED",
"Only 1 user seat",
"Chat by Copy.ai",
"90+ copywriting tools",
"Unlimited projects",
"Blog Wizard tool",
"25+ languages",
"Access to newest features"
]
},
{
"plan_name": "PRO",
"plan_amount": 49,
"currency_code": "USD",
"frequency": "monthly",
"features": [
"UNLIMITED WORDS",
"5 user seats",
"Chat by Copy.ai",
"90+ copywriting tools",
"Unlimited projects",
"Priority email support",
"25+ languages",
"Blog Wizard tool",
"Access to newest features"
]
},
{
"plan_name": "ENTERPRISE",
"plan_amount": null,
"currency_code": null,
"frequency": null,
"features": [
"Automate Any Workflow",
"API access",
"Chat interface",
"Prebuilt workflows library",
"Private company Infobase"
]
}
}
[] - レート制限を追加します
[] - APIサポートを追加します
[] - 周波数と通貨の切り替えとスクレイプとの相互作用を持つ機能。
リポジトリをクローニングした後、コマンドラインでアプリケーションを実行すると、 http://localhost:3000で利用可能になります。
npm run devvercelを使用して例を展開します。