ai-workflow-automator turns plain text into validated AI pipeline configs for seamless serverless data workflows.
Project description
AI Workflow Automator
A Python package that helps users design and automate AI-driven data pipelines by converting natural language instructions into structured, executable workflow configurations.
Overview
The AI Workflow Automator enables users to describe their desired data processing or AI workflow in plain English, and automatically converts it into a structured format that can be integrated with serverless AI and data processing tools. This allows non-technical users to create complex workflows without deep technical knowledge, focusing on the "what" rather than the "how."
Installation
pip install ai_workflow_automator
Usage
from ai_workflow_automator import ai_workflow_automator
# Basic usage with default LLM7 model
user_input = "Create a workflow that processes customer data, runs sentiment analysis, and stores results in a database"
result = ai_workflow_automator(user_input=user_input)
print(result)
Parameters
user_input(str): The natural language description of the desired workflowllm(Optional[BaseChatModel]): A LangChain LLM instance (defaults to ChatLLM7)api_key(Optional[str]): API key for LLM7 (if using default model)
Using Different LLM Providers
You can use any LangChain-compatible LLM by passing it to the function:
OpenAI
from langchain_openai import ChatOpenAI
from ai_workflow_automator import ai_workflow_automator
llm = ChatOpenAI()
response = ai_workflow_automator(user_input="your workflow description", llm=llm)
Anthropic
from langchain_anthropic import ChatAnthropic
from ai_workflow_automator import ai_workflow_automator
llm = ChatAnthropic()
response = ai_workflow_automator(user_input="your workflow description", llm=llm)
Google Generative AI
from langchain_google_genai import ChatGoogleGenerativeAI
from ai_workflow_automator import ai_workflow_automator
llm = ChatGoogleGenerativeAI()
response = ai_workflow_automator(user_input="your workflow description", llm=llm)
Default LLM Configuration
By default, the package uses ChatLLM7 from langchain-llm7. The free tier rate limits sufficient for most use cases. For higher rate limits:
- Set environment variable:
export LLM7_API_KEY="your_api_key" - Or pass directly:
ai_workflow_automator(..., api_key="your_api_key")
Get a free API key at: https://token.llm7.io/
Error Handling
The function will raise a RuntimeError if the LLM call fails or the output doesn't match the expected format.
Dependencies
- llmatch-messages
- langchain-core
- langchain-llm7 (optional, for default LLM)
Contributing
Issues and contributions welcome at: https://github.com/chigwell/ai-workflow-automator
Author
Eugene Evstafev (hi@euegne.plus)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ai_workflow_automator-2025.12.21192054.tar.gz.
File metadata
- Download URL: ai_workflow_automator-2025.12.21192054.tar.gz
- Upload date:
- Size: 4.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49b907411a0a205512903cf2a13f5fbec75b880df4b111f17c31c9807e8f914f
|
|
| MD5 |
57b56d95ae4125ca7a9ccd10d0335dd5
|
|
| BLAKE2b-256 |
89cb987102320cc3ab403305ca8a5aa0215c7b061f5048287efa2895b7887cb9
|
File details
Details for the file ai_workflow_automator-2025.12.21192054-py3-none-any.whl.
File metadata
- Download URL: ai_workflow_automator-2025.12.21192054-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a69a3a25c9820c5b0a0c6886e1d8e7210f4a9444ae9472306710056e8a2cc767
|
|
| MD5 |
f16c6243c75a465cd56a7ce99fdded93
|
|
| BLAKE2b-256 |
de6d127193c26156c454918b97efce71b268969f4d80b3a0675ee0aa08345187
|