brand
context
industry
strategy
AaaS
Skip to main content
Knowledge Index

AI Automation Scripts

90 AI automation scripts and workflow recipes ranked by composite score — covering data extraction, content pipelines, outreach sequences, and business process automation. Each script is scored on adoption, quality, freshness, citations, and community engagement.

90 scripts

ScriptSpeech & Audio AI

Speech-to-Text Pipeline

by OpenAI

Production-grade ASR pipeline using OpenAI Whisper or faster-whisper with VAD-based chunking, speaker timestamp alignment, and SRT/VTT subtitle export. Handles long-form audio via sliding window segmentation and automatic language detection.

speech-to-textwhispertranscription
71.4B+
ScriptComputer Vision

Object Detection Setup

by Ultralytics

Bootstraps a production-ready object detection workflow using YOLOv8 or RT-DETR, including webcam/video stream ingestion, NMS post-processing, and annotation overlay rendering. Outputs annotated frames and a structured JSON detections log suitable for downstream analytics.

object-detectionyolobounding-boxes
67.9B
ScriptAI for Code

Feature Importance Analyzer

by Community

Computes and visualizes feature importance using SHAP (TreeExplainer, KernelExplainer), permutation importance, and Boruta for any scikit-learn-compatible model. Generates HTML dashboards with global/local explanations, feature interaction heatmaps, and ranked importance tables exportable to CSV.

feature-importanceshappermutation-importance
66.9B
ScriptAI for Code

REST AI API Template

by Community

Production-ready FastAPI template for AI-powered REST APIs, with pre-wired OpenAI/Anthropic client, async streaming endpoints, JWT authentication, rate limiting, structured logging, and OpenAPI docs. Includes Docker Compose stack with Redis rate-limit store and Prometheus metrics.

rest-apifastapiopenai
66.7B
ScriptAI for Code

Fraud Detection Pipeline

by Community

End-to-end fraud detection pipeline combining XGBoost/LightGBM with isolation forest anomaly detection, handling severe class imbalance via SMOTE-Tomek resampling and cost-sensitive learning. Includes a real-time scoring API with sub-10ms latency, feature drift monitoring, and an explainability layer for dispute resolution.

fraud-detectionanomaly-detectionimbalanced-learning
63.7B
ScriptComputer Vision

Image Classification Pipeline

by Community

End-to-end image classification pipeline that handles dataset loading, preprocessing, model inference, and result export using PyTorch and torchvision. Supports batch inference against any Hugging Face ViT or ResNet checkpoint with configurable confidence thresholds.

image-classificationvisionpytorch
62.7B
ScriptAI Infrastructure

Model Fine-Tuning (LoRA)

by AaaS

Fine-tunes language models using Low-Rank Adaptation (LoRA) for parameter-efficient training. Handles dataset preparation, adapter configuration, training loop with gradient accumulation, evaluation, and adapter merging for deployment-ready models.

scriptautomationfine-tuning
62.6B
ScriptComputer Vision

OCR Pipeline Script

by Community

Multi-engine OCR pipeline that routes documents to Tesseract, PaddleOCR, or a cloud OCR API based on image quality heuristics. Outputs structured JSON with bounding boxes, confidence scores, and reading-order-sorted text blocks ready for downstream NLP.

ocrtext-extractiondocument-ai
62.1B
ScriptComputer Vision

Image Segmentation Script

by Meta AI

Runs Segment Anything Model (SAM 2) or Mask2Former on image batches, producing per-pixel segmentation masks with class labels and confidence scores. Includes utilities for mask overlay visualization and RLE-encoded mask export compatible with COCO annotation format.

segmentationsammask
62B
ScriptAI Infrastructure

Data Quality Checker

by Great Expectations

Runs automated data quality checks on tabular datasets using Great Expectations, producing a profiling report with schema validation, distribution drift alerts, and referential integrity checks. Integrates with CI/CD pipelines to block model training when data quality gates fail.

data-qualitygreat-expectationsdeequ
62B
ScriptAI Infrastructure

PII Redaction Pipeline

by Microsoft

Detects and redacts personally identifiable information from text and structured data using Microsoft Presidio with configurable entity recognizers for GDPR and HIPAA compliance. Supports reversible pseudonymization with a secure vault for re-identification by authorized parties.

piiredactionpresidio
61.7B
ScriptAI Infrastructure

Basic RAG Pipeline

by AaaS

Minimal RAG pipeline script for getting started with retrieval-augmented generation. Sets up document loading, text splitting, embedding generation, and vector store indexing with a simple query interface for prototyping and learning.

scriptautomationrag
61.5B
ScriptSpeech & Audio AI

Speaker Diarization Script

by pyannote

Identifies and segments individual speakers in multi-party audio recordings using pyannote.audio, then merges speaker labels with Whisper transcriptions to produce a turn-by-turn conversation transcript. Supports overlapping speech detection and speaker enrollment for known identities.

diarizationspeaker-idpyannote
60.4B
ScriptAI for Code

Chatbot Builder Script

by Community

Scaffolds a production chatbot combining Rasa for intent classification and dialogue management with an LLM fallback for open-domain questions, deployable to Web, WhatsApp, and Slack via a single channel adapter layer. Includes conversation analytics, entity extraction training data tooling, and a Streamlit testing playground.

chatbotrasallm
60.2B
ScriptAI for Code

Neo4j RAG Pipeline

by Neo4j

Implements a GraphRAG pattern that stores document entities and relationships in Neo4j, then retrieves contextually relevant subgraphs at query time before passing them to an LLM. Includes automatic entity extraction with spaCy, relationship inference, and a Cypher query generator.

knowledge-graphneo4jgraph-rag
59.8C+
ScriptComputer Vision

Visual Search Engine

by Community

Builds a reverse image search engine using CLIP embeddings indexed in Qdrant or Weaviate, supporting text-to-image and image-to-image queries. Includes a FastAPI server, automatic re-ranking with a cross-encoder, and a Gradio demo interface.

visual-searchimage-embeddingssimilarity-search
59.4C+
ScriptAI Infrastructure

Serverless Model Deploy

by Community

Packages a trained ML model into a serverless function on AWS Lambda, Modal, or Google Cloud Run, handling cold-start optimization, dependency layering, and auto-scaling configuration. Includes health-check endpoints, structured logging, and a GitHub Actions workflow for automated rollout.

serverlesslambdamodal
59C+
ScriptAI for Code

Recommendation Engine Setup

by Community

Builds a two-stage recommendation engine using a two-tower neural retrieval model for candidate generation and an LLM-based cross-encoder for re-ranking, with a Feast feature store for real-time user context. Supports cold-start via content-based fallback and A/B test scaffolding for algorithm experimentation.

recommendationcollaborative-filteringllm-reranking
58.7C+
ScriptAI Infrastructure

Edge Model Optimization

by Community

Optimizes PyTorch or TensorFlow models for edge deployment by applying INT8/FP16 quantization, ONNX export, and TFLite conversion with platform-specific tuning for ARM/NPU targets. Benchmarks latency, memory, and accuracy trade-offs across optimization strategies and generates a deployment report.

edge-deploymentonnxquantization
58.7C+
ScriptAI Infrastructure

Model Serving (vLLM)

by AaaS

Deploys a language model as an OpenAI-compatible API server using vLLM. Configures PagedAttention for memory efficiency, continuous batching for throughput, tensor parallelism for multi-GPU setups, and health monitoring endpoints.

scriptautomationserving
58.6C+
ScriptAI for Code

WebSocket Streaming API

by Community

WebSocket server that proxies token-by-token LLM streaming to multiple simultaneous clients, with connection lifecycle management, heartbeat keep-alives, and per-session context persistence. Supports fan-out broadcasting for collaborative AI sessions and reconnection with message replay.

websocketstreamingreal-time
58.4C+
ScriptAI for Code

Automated Feature Engineering

by Alteryx

Applies Deep Feature Synthesis via Featuretools and AutoFeat to automatically generate hundreds of candidate features from relational tabular data, then prunes them using mutual information and SHAP-based importance filters. Produces a reproducible feature pipeline serializable to scikit-learn format.

feature-engineeringfeaturetoolsautoml
58.1C+
ScriptAI for Code

Sentiment Dashboard

by Community

Ingests social media feeds, reviews, and support tickets in near-real-time, scores sentiment at entity and aspect level using a fine-tuned RoBERTa model, and renders a live Streamlit dashboard with trend charts, topic clustering, and configurable alert thresholds for brand-crisis detection.

sentiment-analysisdashboardbrand-monitoring
58C+
ScriptAI Infrastructure

Data Cleaning Script

by AaaS

Cleans and normalizes text data for LLM consumption by removing HTML artifacts, fixing encoding issues, standardizing whitespace, deduplicating near-identical entries, and filtering low-quality content based on configurable quality heuristics.

scriptautomationcleaning
57.6C+

Automate your business workflows

AaaS helps you build, deploy, and maintain AI automation scripts tailored to your business context. Get a free audit to identify your top 5 automation opportunities.

Get Free AI Audit