1from apify_client import ApifyClient
2
3
4
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7
8run_input = { "text": "In today's fast-paced digital era, the convergence of artificial intelligence and machine learning represents a transformative milestone in modern technology. Generative language models, such as GPT-4 and Claude, leverage deep transformer architectures to process vast datasets and generate human-like prose with remarkable coherence." }
9
10
11run = client.actor("dev00/detector-io-ai-detector-checker").call(run_input=run_input)
12
13
14print(f"๐พ Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
15for item in client.dataset(run.default_dataset_id).iterate_items():
16 print(item)
17
18