VOOZH about

URL: https://apify.com/ntriqpro/content-factory

⇱ AI Content Engine β€” Quiz, Flashcard, Podcast, Slides Β· Apify


πŸ‘ AI Content Transformation Engine - Rewrite at Scale avatar

AI Content Transformation Engine - Rewrite at Scale

Pricing

Pay per event + usage

Go to Apify Store

AI Content Transformation Engine - Rewrite at Scale

Bulk rewrite, summarize, and transform content. Convert blog posts, articles, and documents across different formats and tones.

Pricing

Pay per event + usage

Rating

0.0

(0)

Developer

πŸ‘ daehwan kim

daehwan kim

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a month ago

Last modified

Categories

Share

Content Factory β€” AI Content Transformation Engine

Give it any text. Get back a report, quiz, flashcard deck, podcast script, slide outline, mind map, or audio β€” in one API call.

No OpenAI API key. No external service. Powered by local AI running on dedicated hardware. Zero per-token cost.

Use Cases

  • EdTech platforms β€” Auto-generate quiz questions and flashcards from course material
  • Content teams β€” Convert blog drafts into podcast scripts or slide decks
  • E-learning β€” Create Q&A pairs and study materials from textbooks or docs
  • Internal tools β€” Generate structured reports from meeting notes or research
  • AI workflows β€” Plug into Apify pipelines for multi-step content transformation

Tools at a Glance

ToolOutputPrice
qa_generateQ&A pairs from text$0.15
reportStructured report with sections$0.12
quizMultiple-choice questions$0.15
flashcardsFront/back flashcard deck$0.15
mindmapHierarchical mind map JSON$0.08
data_tableStructured data table$0.15
slide_deckSlide-by-slide outline$0.20
podcast_scriptHost/guest dialogue script$0.18
tts_generateAudio file (MP3) from text$0.05

Installation

$npminstall

Usage

Via Apify API

const run =awaitApify.call('ntriqpro/content-factory',{
toolName:'qa_generate',
input:{text:'Your text here',language:'en'}
});
}
}

Tool Reference

1. QA Generate

Generate question-answer pairs from text.

{
"toolName":"qa_generate",
"input":{
"text":"Machine learning is a subset of AI...",
"language":"en"// optional, default: "en"
}
}

Response:

{
"status":"ok",
"model":"qwen2.5-7b",
"qa_pairs":[
{"question":"What is machine learning?","answer":"..."},
{"question":"How does ML differ from AI?","answer":"..."}
],
"processing_time_ms":2345
}

2. Report

Generate formatted reports in three styles: blog, briefing, or study guide.

{
"toolName":"report",
"input":{
"text":"Python is a programming language...",
"style":"blog",// "blog" | "briefing" | "study_guide"
"language":"en"// optional, default: "en"
}
}

Response:

{
"status":"ok",
"model":"qwen2.5-7b",
"report":"# Python Programming\n\n## Introduction\n...",
"style":"blog",
"processing_time_ms":3456
}

3. Quiz

Generate quiz questions with multiple choice options.

{
"toolName":"quiz",
"input":{
"text":"The solar system consists of...",
"language":"en"// optional, default: "en"
}
}

Response:

{
"status":"ok",
"model":"qwen2.5-7b",
"quiz_questions":[
{
"question":"How many planets are in our solar system?",
"options":["8","9","10","7"],
"correct_answer":"8"
}
],
"processing_time_ms":2100
}

4. Flashcards

Generate flashcard decks for learning.

{
"toolName":"flashcards",
"input":{
"text":"Photosynthesis is the process...",
"language":"en"// optional, default: "en"
}
}

Response:

{
"status":"ok",
"model":"qwen2.5-7b",
"flashcards":[
{
"front":"What is photosynthesis?",
"back":"The process by which plants convert light energy..."
}
],
"processing_time_ms":1987
}

5. Mindmap

Generate Mermaid mind map diagrams.

{
"toolName":"mindmap",
"input":{
"text":"Web development involves frontend and backend...",
"language":"en"// optional, default: "en"
}
}

Response:

{
"status":"ok",
"model":"qwen2.5-7b",
"mindmap":"mindmap\n root((Web Development))\n Frontend\n HTML\n CSS\n JavaScript",
"format":"mermaid",
"processing_time_ms":1876
}

6. Data Table

Extract structured data into tables.

{
"toolName":"data_table",
"input":{
"text":"Japan: Capital Tokyo, Population 125M. Korea: Capital Seoul, Population 50M.",
"language":"en"// optional, default: "en"
}
}

Response:

{
"status":"ok",
"model":"qwen2.5-7b",
"data_table":{
"columns":["Country","Capital","Population"],
"rows":[
["Japan","Tokyo","125M"],
["Korea","Seoul","50M"]
]
},
"processing_time_ms":1654
}

7. Slide Deck

Generate presentation slide decks.

{
"toolName":"slide_deck",
"input":{
"text":"Digital transformation has three phases...",
"language":"en"// optional, default: "en"
}
}

Response:

{
"status":"ok",
"model":"qwen2.5-7b",
"slides":[
{
"slide_number":1,
"title":"Digital Transformation",
"content":"An overview of modern business...",
"notes":"Speaker notes..."
}
],
"processing_time_ms":3210
}

8. Podcast Script

Generate conversational podcast scripts.

{
"toolName":"podcast_script",
"input":{
"text":"Artificial intelligence is changing...",
"language":"en"// optional, default: "en"
}
}

Response:

{
"status":"ok",
"model":"qwen2.5-7b",
"script":"[Host]: Welcome to the AI podcast...\n[Guest]: Thanks for having me...",
"format":"conversational",
"processing_time_ms":4123
}

9. TTS Generate

Generate natural speech audio from text.

{
"toolName":"tts_generate",
"input":{
"text":"Hello, this is a test message.",
"voice":"af_heart",// optional, default: "af_heart"
"speed":1.0// optional, 0.5-2.0, default: 1.0
}
}

Response:

{
"status":"ok",
"model":"kokoro",
"audio_url":"https://vision.ntriq.co.kr/audio/...",
"voice":"af_heart",
"speed":1.0,
"duration_seconds":3.2,
"processing_time_ms":2456
}

Pricing

Optimized based on cloud performance testing. Processing times range from 263ms (TTS) to 54s (Slide Deck).

ToolPriceProcessing Time
tts_generate$0.05~260ms
mindmap$0.08~17s
report$0.12~28s
qa_generate$0.15~36s
quiz$0.15~36s
flashcards$0.15~36s
data_table$0.15~36s
podcast_script$0.18~53s
slide_deck$0.20~54s

Environment Variables

$NTRIQ_AI_URL=https://vision.ntriq.co.kr # default: https://vision.ntriq.co.kr

Development

# Run tests
npmtest
# Lint
npm run lint

License

MIT


πŸ”— Related Actors by ntriqpro

Build your data pipeline with the ntriqpro Actor suite:

⭐ Love it? Leave a Review

Your rating helps other professionals discover this actor. Rate it here.

You might also like

AI Content Transformer - Rewrite, Translate & Repurpose

ntriqpro/content-factory-mcp

Transform content across formats: summarize articles, expand outlines, translate languages, and repurpose for different platforms.

AI Article Rewriter & WordPress Publisher

saadithya/ai-article-rewriter-wordpress-publisher

Fetch articles from multiple URLs, rewrite them using AI, generate featured images, and publish directly to WordPress.

Data Format Converter - CSV, JSON, XML Transformation

ntriqpro/data-format-converter

Convert data between common formats: CSV, JSON, and XML. Bulk transform files without manual work.

Ai Content Generator

allanjblythe/ai-content-generator

Generate blog posts, social media content, emails, and SEO-optimized articles instantly. Cut content costs by 80% and scale your content marketing. AI-powered writing that sounds human and drives results.

15

File Converter All-in-one

tufantoksoz/file-converter

Convert files between popular formats at scale on Apify. Transform documents, spreadsheets, and images with professional-grade quality and performance. Convert word to pdf, jpeg to png and more

πŸ‘ User avatar

Tufan ToksΓΆz

12

AI Translator, Summarizer & Rewriter

jungle_synthesizer/ai-content-translator-summarizer

Transform any URL or text β€” translate, summarize, rewrite, extract key points, or TL;DR. URL inputs auto-extract to clean text. BYO model via OpenRouter. Token + cost accounting in every dataset row. Local cache for repeat inputs.

πŸ‘ User avatar

BowTiedRaccoon

1

SEO News Aggregator - AI-Powered Content Curation

alizarin_refrigerator-owner/seo-news-aggregator

Aggregate the latest SEO news from top industry sources and transform them into ready-to-post content with AI summarization. Search Engine Journal, Search Engine Land, Moz Blog, Ahrefs Blog , Neil Patel, Backlinko