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 지원을 추가하십시오
[] - 주파수 및 통화 토글 및 스크랩과의 상호 작용 능력.
Repo를 복제 한 후에는 명령 줄에서 응용 프로그램을 실행하면 http://localhost:3000 에서 사용할 수 있습니다.
npm run devVercel을 사용하여 예제 배포 :