gl0bal01

LLM 1minai — AI skill for Claude Code

AI community

LLM plugin providing access to AI models through 1min.ai API with web search, mixed context, and persistent options.

How to install LLM 1minai

This entry records only its repository, not the path inside it, so there is no exact command to give. Open gl0bal01/llm-1minai and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What LLM 1minai does

LLM plugin providing access to AI models through 1min.ai API with web search, mixed context, and persistent options.

Alternatives in AI

  • Pal Configuration Docs — for model and thinking mode options 11.3k ★
  • Firecrawl MCP Server — 🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM c 6.1k ★
  • Deepreasoning — A high-performance LLM inference API and Chat UI that integrates DeepSeek R1's CoT reasoning traces with Anthr 5.4k ★

README

llm-1minai

[![PyPI](https://img.shields.io/pypi/v/llm-1minai.svg)](https://pypi.org/project/llm-1minai/) [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/gl0bal01/llm-1minai/blob/main/LICENSE) [![Tests](https://github.com/gl0bal01/llm-1minai/workflows/Tests/badge.svg)](https://github.com/gl0bal01/llm-1minai/actions) [![Code Quality](https://github.com/gl0bal01/llm-1minai/workflows/Code%20Quality/badge.svg)](https://github.com/gl0bal01/llm-1minai/actions)

Plugin for [LLM](https://llm.datasette.io/) adding support for [1min.ai](https://1min.ai) AI models.

Access **75+ AI models** through a single API: Claude 4.6 Sonnet/Opus, Claude 4.5 Haiku, GPT-5.4, GPT-5.1 Codex, o3 / o4, Gemini 3.1, Qwen3, DeepSeek V3.2, Mistral, LLaMA 4, Grok 4, Sonar, and more.

Built on the unified `/api/chat-with-ai` endpoint with SSE streaming, image and file attachments, AI memory across conversations, brand voice, and structured prompt settings.

**Looking for a standalone CLI?** [`omi`](https://github.com/gl0bal01/omi) is a single-binary Go port of this plugin. No Python required, sub-20ms startup, same `API-KEY` and same routing (UNIFY_CHAT_WITH_AI for chat / vision / docs, CODE_GENERATOR + SPEECH_TO_TEXT on `/api/features`). Run `go install github.com/gl0bal01/omi/cmd/omi@latest`.

Installation

Using LLM's Plugin Manager (Recommended)

Install this plugin in the same environment as LLM:

llm install llm-1minai

Using pipx

If you installed LLM with pipx, inject the plugin into the LLM environment:

pipx inject llm llm-1minai

Or install both LLM and the plugin with pipx:

pipx install llm
pipx inject llm llm-1minai

From Source (Development)

Install from source for development:

git clone https://github.com/gl0bal01/llm-1minai
cd llm-1minai
llm install -e .

Or with pipx:

git clone https://github.com/gl0bal01/llm-1minai
cd llm-1minai
pipx inject llm -e .

Upg