1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "text": "The rapid advancement of artificial intelligence has fundamentally transformed the way we approach complex problem-solving across various domains. Machine learning algorithms, particularly deep neural networks, have demonstrated remarkable capabilities in pattern recognition, natural language processing, and decision-making tasks that were once considered exclusively within the purview of human cognition." }
9
10
11run = client.actor("george.the.developer/ai-content-detector").call(run_input=run_input)
12
13
14print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
15for item in client.dataset(run["defaultDatasetId"]).iterate_items():
16 print(item)
17
18