A unified CLI for AI providers like OpenAI, Ollama and more
Project description
Tasklin
Tasklin is a versatile Python CLI for leveraging multiple AI providers like OpenAI, Ollama, Anthropic (Claude), and more. It’s designed for developers and creators who want to integrate AI into their workflows, pipelines, or automation, without being limited to “chatting” with AI.
Use it to generate text, process data, or build AI-driven scripts, all directly from your terminal.
Features
- Single CLI to interact with multiple AI providers
- Supports OpenAI, Ollama, Anthropic(Claude), DeepSeek and more in the future
- Returns structured responses with tokens used and execution time
- Supports sync and async execution
- Clean error handling for missing models, invalid API keys, etc.
- Available on PyPI as
tasklin
Installation
Clone the repo and install dependencies:
git clone https://github.com/jetroni/tasklin.git
cd tasklin
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -r requirements.txt
Or install directly from PyPI:
pip install tasklin
(Optional) Make the CLI globally executable:
pip install --editable .
Usage
Basic usage:
tasklin --type openai --prompt "Hello AI"
Run with async mode:
tasklin --type openai --prompt "Hello AI" --async-mode
Ollama example (with base URL):
tasklin --type ollama --base-url http://localhost:11434 --model codellama --prompt "Hello"
CLI Options
| Option | Description |
|---|---|
--type |
AI provider type (openai, ollama) |
--prompt |
Text prompt to send to the AI |
--key |
API key for providers that require authentication |
--model |
Model name to use (defaults vary per provider) |
--base-url |
Base URL for self-hosted providers like Ollama |
--async-mode |
Run asynchronously (flag, no value needed) |
Response Structure
All responses are returned as a structured JSON object:
{
"provider": "openai",
"model": "gpt-4o-mini",
"output": "Hello! How can I assist you today?",
"raw": {...},
"tokens_used": 17,
"duration_ms": 543
}
Contributing
We welcome contributions!
- Add support for new AI providers
- Improve error handling
- Enhance async execution and CLI experience
Please fork the repo and submit a pull request.
License
MIT License. Free to use and modify.
PyPI
tasklin is published on PyPI. Install via:
pip install tasklin
Stay up to date with the latest releases and check the package page: https://pypi.org/project/tasklin/
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 Distributions
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 tasklin-0.0.1-py3-none-any.whl.
File metadata
- Download URL: tasklin-0.0.1-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.9.23
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d3e0ce28855b87242ed13c46098969e1a00282c8d1c6bdf16494d65fa874a8e
|
|
| MD5 |
5f7fa0e38ffc7fda36ee4a06295f7595
|
|
| BLAKE2b-256 |
70b8ddf87bafd632b3015488ec49a719d8f2cde0dcfb39a444227a6620ccfeea
|