WCC Pinecone Integration avatar
WCC Pinecone Integration
Try for free

No credit card required

View all Actors
WCC Pinecone Integration

WCC Pinecone Integration

tri_angle/wcc-pinecone-integration
Try for free

No credit card required

Crawl any website and store its content in your Pinecone vector database. Enhance the accuracy and reliability of your own AI Assistant with facts fetched from external sources or connect this integration to our Pinecone GPT Chatbot assistant available in Apify Store.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1# Set API token
2API_TOKEN=<YOUR_API_TOKEN>
3
4# Prepare Actor input
5cat > input.json <<'EOF'
6{
7  "url": "https://docs.apify.com/",
8  "crawlerType": "playwright:adaptive",
9  "includeUrlGlobs": [],
10  "excludeUrlGlobs": [],
11  "initialCookies": [],
12  "proxyConfiguration": {
13    "useApifyProxy": true
14  },
15  "removeElementsCssSelector": "nav, footer, script, style, noscript, svg,\n[role=\"alert\"],\n[role=\"banner\"],\n[role=\"dialog\"],\n[role=\"alertdialog\"],\n[role=\"region\"][aria-label*=\"skip\" i],\n[aria-modal=\"true\"]",
16  "clickElementsCssSelector": "[aria-expanded=\"false\"]"
17}
18EOF
19
20# Run the Actor using an HTTP API
21# See the full API reference at https://docs.apify.com/api/v2
22curl "https://api.apify.com/v2/acts/tri_angle~wcc-pinecone-integration/runs?token=$API_TOKEN" \
23  -X POST \
24  -d @input.json \
25  -H 'Content-Type: application/json'
Developer
Maintained by Apify
Actor metrics
  • 2 monthly users
  • 1 star
  • 100.0% runs succeeded
  • Created in May 2024
  • Modified 24 days ago