Skip to main content

Command-line interface for EnkaliPrime Chat API

Project description

๐Ÿ–ฅ๏ธ EnkaliPrime CLI

Beautiful Command-Line Interface for AI Chat

Chat with AI directly from your terminal with rich formatting and beautiful animations

Python 3.8+ PyPI Version MIT License

Interactive Chat Local LLM Cloud LLM AI Behavior Global Defaults Rich Formatting Secure Keyring


Installation โ€ข Quick Start โ€ข Commands โ€ข Examples โ€ข Changelog


โœจ Features

๐Ÿ’ฌ Interactive AI Chat

  • Real-time conversation with AI assistants
  • Rich markdown formatting for responses
  • Beautiful Unicode animations while thinking
  • Session persistence across chats
  • Streaming responses support

๐Ÿ  Local LLM Support (Ollama)

  • Full Ollama integration for local AI models
  • Zero API costs for local inference
  • Complete privacy - conversations stay local
  • Any Ollama model support (Llama, CodeLlama, Mistral, etc.)
  • Automatic model detection and management

โ˜๏ธ Cloud AI Support (Ollama Cloud)

  • Powerful cloud models without local hardware requirements
  • Large language models (GPT-OSS 120B, Llama 70B, etc.)
  • API key authentication for secure access
  • No GPU requirements - runs on Ollama's cloud infrastructure
  • Same interface as local models

๐ŸŽญ AI Behavior Customization

  • Custom system prompts to define AI personality
  • AI name configuration for personalized interactions
  • Personality traits and behavioral instructions
  • Reset capabilities to restore default behavior
  • Per-provider customization (local vs cloud)

๐ŸŽฏ Global Default Model Selection

  • One-click model selection from all available providers
  • Universal default that works across all chat commands
  • Smart provider detection with automatic fallback
  • No flags needed - just run chat commands
  • Easy switching between local, cloud, and remote AI

๐ŸŽจ Beautiful Terminal UI

  • Rich console output with colors and formatting
  • Clean, instant responses without loading delays
  • Interactive prompts with validation
  • Progress indicators and status displays
  • PowerShell compatible with automatic fallbacks

๐Ÿ” Secure Configuration

  • Encrypted API key storage using system keyring
  • Multiple key management (EnkaliPrime, Ollama Cloud)
  • Automatic validation of API keys
  • Connection testing across all providers
  • Secure credential management

๐Ÿ“ Advanced Session Management

  • Create named sessions for different contexts
  • Session history and conversation tracking
  • Multiple agents support with custom avatars
  • Clean session lifecycle management
  • Conversation persistence across sessions

๐Ÿ’ป Coding Assistant Mode

  • Project planning with AI-generated implementation plans
  • File system operations (create, edit, read files/directories)
  • Interactive progress tracking with visual indicators
  • Safe operations within project scope
  • AI-powered code generation for complete projects

๐Ÿ“Š Implementation Planning

  • Structured task breakdown for complex projects
  • User approval workflow before execution
  • Progress visualization with completion tracking
  • File-based organization with automatic directory creation
  • Error handling and recovery mechanisms

๐ŸŒ Web Search Augmentation

  • Real-time web search using Ollama's web search API
  • Enhanced AI responses with current information
  • Reduced hallucinations through factual web data
  • Seamless integration with all AI providers
  • Secure authentication via Ollama Cloud API

๐Ÿ“ˆ Advanced AI Capabilities

  • Context-aware responses with web search integration
  • Up-to-date information for time-sensitive queries
  • Multi-provider support (local, cloud, remote)
  • Intelligent result filtering and formatting
  • Privacy-preserving web search capabilities

๐Ÿ—๏ธ Architecture

graph TD
    A[๐Ÿ–ฅ๏ธ Terminal] --> B[enkaliprime CLI]
    B --> C{Commands}
    C --> D[๐Ÿ’ฌ chat]
    C --> E[โš™๏ธ config]
    C --> F[๐Ÿ“ session]

    D --> G[Interactive Chat]
    D --> H[Single Message]
    D --> I[Providers List]
    D --> J[History View]

    E --> K[API Keys]
    E --> L[Ollama Config]
    E --> M[Cloud Config]
    E --> N[AI Behavior]
    E --> O[Global Defaults]
    E --> P[Test Connections]
    E --> Q[Show Config]

    F --> R[Create Session]
    F --> S[End Session]
    F --> T[Session Info]

    B --> U[๐Ÿ” Keyring]
    B --> V[๐Ÿ“ฆ SDK]
    V --> W{Provider Router}
    W --> X[๐Ÿค– EnkaliPrime API]
    W --> Y[๐Ÿ  Local Ollama]
    W --> Z[โ˜๏ธ Ollama Cloud]

    U --> AA[(API Keys)]
    U --> BB[(Ollama Models)]
    U --> CC[(Cloud Models)]
    U --> DD[(AI Behavior)]
    U --> EE[(Global Defaults)]

๐Ÿ“ฆ Installation

From PyPI (Recommended)

pip install enkaliprime-cli

From Source

git clone https://github.com/Auwanga/sdk.git
cd sdk/enkaliprime-cli
pip install -e .

Requirements

  • Python 3.8+
  • enkaliprime SDK (automatically installed)
  • System keyring support (built-in on most systems)
  • Optional: Ollama for local LLM support

๐Ÿ  Local LLM Support (Ollama)

EnkaliPrime CLI supports local AI models through Ollama integration, allowing you to run AI conversations without API costs and with complete privacy.

Quick Local Setup

  1. Install Ollama:

    # Download from https://ollama.ai/
    # Or use package manager:
    # Linux: curl -fsSL https://ollama.ai/install.sh | sh
    # macOS: brew install ollama
    # Windows: winget install Ollama.Ollama
    
  2. Start Ollama:

    ollama serve
    
  3. Pull a model:

    ollama pull llama2      # General purpose
    ollama pull codellama   # Code assistant
    ollama pull mistral     # Fast and capable
    
  4. Configure CLI:

    enkaliprime config set-ollama-model
    # Interactive model selection
    
  5. Start using local AI:

    enkaliprime chat interactive --local
    enkaliprime chat ask "Hello local AI!" --local
    

Local vs Remote Comparison

Feature Remote (EnkaliPrime) Local (Ollama)
Cost API usage fees Free (one-time setup)
Privacy Cloud processing Local processing
Speed Network dependent Local inference
Models Curated selection Any Ollama model
Setup API key only Ollama installation
Offline โŒ Requires internet โœ… Works offline

โ˜๏ธ Cloud AI Support (Ollama Cloud)

EnkaliPrime CLI supports powerful cloud models through Ollama Cloud integration, giving you access to large language models without requiring expensive local hardware.

Quick Cloud Setup

  1. Get API Key: Visit ollama.com/settings/keys to create an API key.

  2. Configure CLI:

    enkaliprime config set-ollama-cloud-key
    # Enter your API key securely
    
  3. Set Default Cloud Model (Optional):

    enkaliprime config set-default-cloud-model
    # Interactive selection from available cloud models
    
  4. Start Cloud Chat:

    enkaliprime chat interactive --cloud
    # Access models like GPT-OSS 120B, Llama 70B, etc.
    

Cloud vs Local vs Remote Comparison

Feature Remote (EnkaliPrime) Local (Ollama) Cloud (Ollama Cloud)
Cost API usage fees Free (one-time setup) API key required
Privacy Cloud processing Local processing Cloud processing
Model Size Curated selection Limited by hardware Very large models (100B+)
Setup API key only Ollama installation API key + optional local Ollama
Offline โŒ Requires internet โœ… Works offline โŒ Requires internet
Hardware Any computer GPU recommended Any computer

Cloud Models Available

  • GPT-OSS 120B - Large GPT-style model
  • Llama 3.1 70B - Meta's latest large model
  • CodeLlama 34B - Code-focused model
  • Mixtral 46.7B - High-performance mixture model
  • And many more...

๐ŸŽญ AI Behavior Customization

Customize how your AI behaves, responds, and interacts with you. Define personality traits, system prompts, and behavioral instructions.

Quick Behavior Setup

# Define AI behavior and personality
enkaliprime config set-system-prompt
# "You are a helpful coding assistant. Always provide clear, concise answers with code examples."

# Set AI name and traits
enkaliprime config set-ai-personality
# Name: CodeBuddy
# Personality: patient, detail-oriented, loves debugging

# Reset to defaults anytime
enkaliprime config reset-ai-behavior

Behavior Features

  • System Prompts: Define core AI behavior and response style
  • AI Personality: Give your AI a name and personality traits
  • Per-Provider: Customize behavior differently for local vs cloud AI
  • Reset Capability: Easily restore default behavior
  • Rich Prompts: Multi-line prompt input with validation

Example Customizations

Coding Assistant:

System Prompt: "You are an expert programming assistant. Always provide working code examples and explain concepts clearly."

AI Name: "CodeMaster"
Personality: "patient, methodical, focuses on best practices"

Creative Writing AI:

System Prompt: "You are a creative writing assistant. Help with story development, character creation, and narrative techniques."

AI Name: "StoryWeaver"
Personality: "imaginative, encouraging, focuses on emotional depth"

๐ŸŽฏ Global Default Model Selection

Set your primary AI model once and use it effortlessly across all chat commands. No more remembering flags or provider specifications.

Quick Default Setup

# Choose from ALL available models
enkaliprime config set-default-model
# Interactive selection from local, cloud, and remote models

# Now chat effortlessly
enkaliprime chat interactive   # Uses your default
enkaliprime chat ask "Hello"   # Uses your default

How It Works

  1. Model Discovery: Automatically detects all available models
  2. Unified Selection: Choose from local Ollama, cloud models, and remote AI
  3. Smart Resolution: Chat commands automatically use your configured default
  4. Override Available: Still use specific providers when needed

Default Model Benefits

  • Simplified Usage: Just run chat commands, no flags needed
  • Consistent Experience: Same AI personality across all conversations
  • Easy Switching: Change your default anytime without breaking workflows
  • Provider Agnostic: Works with local, cloud, and remote AI

๐ŸŒ Web Search Augmentation

EnkaliPrime CLI supports web search augmentation using Ollama's web search API, allowing AI conversations to access up-to-date information and reduce hallucinations.

Web Search Features

  • ๐Ÿ” Real-time Search: Access current information from the web
  • ๐Ÿ“š Smart Integration: Search results automatically included in AI context
  • ๐Ÿ›ก๏ธ Privacy: Uses secure Ollama Cloud API (same key as cloud models)
  • โšก Instant Results: Up to 5 search results per query
  • ๐Ÿค– AI-Powered: AI can use web results to provide more accurate answers

Quick Web Search Setup

  1. Configure Ollama Cloud API Key (if not already done):

    enkaliprime config set-ollama-cloud-key
    # Enter your API key from https://ollama.com/settings/keys
    
  2. Start Web-Augmented Chat:

    # Interactive chat with web search
    enkaliprime chat interactive --web
    
    # Single question with web search
    enkaliprime chat ask "What are the latest developments in AI?" --web
    
  3. Toggle Web Search During Interactive Sessions:

    # Start interactive chat (without web search initially)
    enkaliprime chat interactive
    
    # Enable web search during the session
    /web
    
    # Check current status
    /status
    
    # Disable web search
    /web
    

How It Works

When --web is enabled:

  1. Query Analysis: Your message is sent to web search API
  2. Smart Results: Up to 5 relevant search results are retrieved
  3. Context Enhancement: Search results are formatted and added to your message
  4. AI Processing: AI receives both your original query and web context
  5. Accurate Response: AI uses web information to provide better answers

Example Usage

# Ask about current events
enkaliprime chat ask "What's happening with the latest AI regulations?" --web

# Technical questions with up-to-date info
enkaliprime chat ask "What are the newest features in Python 3.13?" --web

# Interactive mode with web search
enkaliprime chat interactive --web --cloud --model gpt-oss:120b

Web Search Benefits

Without Web Search With Web Search
May use outdated knowledge Accesses current information
Potential for hallucinations Grounded in real web data
Limited to training data Up-to-date facts and news
Static responses Dynamic, contextual answers

Technical Details

  • API: Uses Ollama's https://ollama.com/api/web_search endpoint
  • Results: Returns title, content snippet, and URL for each result
  • Integration: Seamlessly works with all AI providers (remote, local, cloud)
  • Security: All requests use your configured Ollama Cloud API key
  • Performance: Minimal latency impact with efficient API calls

๐Ÿ’ป Coding Assistant Mode

The coding assistant mode provides an advanced development environment with AI-powered project planning, file operations, and implementation tracking.

Features

  • ๐ŸŽฏ Project Planning: AI creates detailed implementation plans with tasks, files, and dependencies
  • ๐Ÿ“ File Operations: Safe creation, editing, and reading of project files
  • ๐Ÿ“Š Progress Tracking: Visual progress indicators and task completion tracking
  • ๐Ÿ”’ Security: All file operations are sandboxed within your project directory
  • ๐Ÿค– AI Assistance: Specialized coding AI with best practices and modern conventions

Getting Started

# Start coding assistant mode
enkaliprime chat interactive --coder

# Or use the menu
enkaliprime
> code

Coding Commands

Once in coding mode, you have access to specialized commands:

Command Description
plan <description> Create AI-generated implementation plan
implement Execute the current plan (generate all files)
create <file> Create/edit a specific file
read <file> Read and display file contents
list [dir] List directory contents
status Show current progress
help Show coding assistant help
<message> Chat with the coding AI

Interactive Commands

During interactive chat sessions, you can use special commands:

# Show available commands
/

# Toggle web search on/off
/web

# Show current session status
/status

# Show command help
/help

# Exit the session
exit

Web Search Status Display

The CLI shows the current web search status in the session information:

๐Ÿค– Using remote AI provider (EnkaliPrime)
๐ŸŒ Web Search: [green]Active[/]

Example Workflow

# Start interactive chat
enkaliprime chat interactive

# Check current status
/status

# Enable web search
/web
๐ŸŒ Web search enabled

# Ask a question that will use web search
What are the latest developments in AI?

# Disable web search
/web
๐ŸŒ Web search disabled

# Exit the session
exit

Coding Assistant Mode

# Start coding mode
enkaliprime chat interactive --coder

# Create a plan for a web app
coder> plan Create a simple Flask web application with user authentication

# Review and approve the plan
# (AI shows detailed implementation plan)
# (You approve or request changes)

# Execute the implementation
coder> implement

# Watch progress as AI generates all files:
# - app.py (Flask application)
# - models.py (Database models)
# - auth.py (Authentication logic)
# - templates/ (HTML templates)
# - static/ (CSS/JS files)

# Check status anytime
coder> status

# Edit specific files
coder> create templates/login.html

# Exit when done
coder> exit

Project Planning

The AI creates structured implementation plans with:

  • ๐Ÿ“‹ Task Breakdown: Logical separation of work into manageable tasks
  • ๐Ÿ“„ File Specifications: Exact files needed for each task
  • ๐Ÿ”— Dependencies: Task relationships and prerequisites
  • ๐ŸŽฏ Priority Levels: High, medium, low priority tasks
  • ๐Ÿ“ˆ Progress Tracking: Real-time completion status

Safe File Operations

All file operations are designed with safety in mind:

  • ๐Ÿ—‚๏ธ Sandboxed: Operations limited to project directory
  • ๐Ÿ’พ Backup: Existing files require confirmation before overwrite
  • ๐Ÿ“ Auto-create: Parent directories created automatically
  • ๐Ÿ” Validation: File paths validated before operations

Best Practices

  • Review Plans: Always review AI-generated plans before approval
  • Iterative Development: Use multiple plan/implement cycles for complex projects
  • File Organization: Let AI suggest optimal project structure
  • Code Quality: AI follows modern coding standards and best practices

๐Ÿš€ Quick Start

Option A: Remote AI (EnkaliPrime API)

1. Configure API Key

enkaliprime config set-api-key
# Follow the secure prompt to enter your API key

2. Test Connection

enkaliprime config test-connection
# Verify everything is working

3. Start Chatting

enkaliprime chat interactive
# Begin your AI conversation!

Option B: Local AI (Ollama)

1. Install and Setup Ollama

# Install Ollama (visit https://ollama.ai/)
ollama serve
ollama pull llama2

2. Configure Default Model

enkaliprime config set-ollama-model
# Interactive model selection from available Ollama models

3. Start Local Chat

enkaliprime chat interactive --local
# Chat with your local AI model!

Option C: Cloud AI (Ollama Cloud)

1. Get Ollama Cloud API Key

Visit ollama.com/settings/keys to get your API key.

2. Configure API Key

enkaliprime config set-ollama-cloud-key
# Enter your API key securely

3. Start Cloud Chat

enkaliprime chat interactive --cloud
# Use powerful cloud models!

enkaliprime chat ask "Explain quantum computing" --cloud --model gpt-oss:120b

Option D: Global Default Model (Recommended)

1. Choose Your Default AI

enkaliprime config set-default-model
# Interactive selection from ALL available models

2. Chat Effortlessly

# No flags needed - uses your default model!
enkaliprime chat interactive
enkaliprime chat ask "Hello AI!"

Hybrid Usage

You can use all providers seamlessly:

# Global default (whatever you configured)
enkaliprime chat interactive

# Remote AI explicitly
enkaliprime chat interactive --provider remote

# Local AI explicitly
enkaliprime chat interactive --provider ollama

# Cloud AI explicitly
enkaliprime chat interactive --provider cloud

# Check all available providers
enkaliprime chat providers

# Combine web search with any provider
enkaliprime chat interactive --web --provider cloud
enkaliprime chat ask "Latest news in AI" --web --local

# Interactive session commands
enkaliprime chat interactive
# Then use: /web, /status, /help during the session

๐Ÿ“– Commands

Main Commands

Command Description
enkaliprime --help Show help and available commands
enkaliprime info Show CLI information and features
enkaliprime --version Show version information

๐Ÿ’ฌ Chat Commands

Command Description
enkaliprime chat interactive Start interactive chat (uses global default model)
enkaliprime chat interactive --local Interactive chat with local Ollama model
enkaliprime chat interactive --cloud Interactive chat with Ollama cloud models
enkaliprime chat interactive --web NEW: Interactive chat with web search augmentation
enkaliprime chat interactive --coder NEW: Start coding assistant mode with project planning
enkaliprime chat interactive --provider <name> Use specific provider (remote/ollama/cloud)
enkaliprime chat ask "message" Send single message (uses global default)
enkaliprime chat ask "message" --local Quick question to local Ollama model
enkaliprime chat ask "message" --cloud Quick question to Ollama cloud
enkaliprime chat ask "message" --web NEW: Single message with web search augmentation
enkaliprime chat providers List all available AI providers and models
enkaliprime chat history Show conversation history

โš™๏ธ Configuration Commands

API Key Management

Command Description
enkaliprime config set-api-key Set your EnkaliPrime API key securely
enkaliprime config get-api-key Show masked API key
enkaliprime config remove-api-key Remove stored API key
enkaliprime config test-connection Test EnkaliPrime API connection

Local AI (Ollama) Configuration

Command Description
enkaliprime config set-ollama-model Set default local Ollama model
enkaliprime config get-ollama-model Show current Ollama model
enkaliprime config remove-ollama-model Remove Ollama model config
enkaliprime config show-ollama Show Ollama status and models

Cloud AI (Ollama Cloud) Configuration

Command Description
enkaliprime config set-ollama-cloud-key Set Ollama cloud API key
enkaliprime config get-ollama-cloud-key Show masked cloud API key
enkaliprime config remove-ollama-cloud-key Remove cloud API key
enkaliprime config set-default-cloud-model Set default cloud model
enkaliprime config get-default-cloud-model Show default cloud model
enkaliprime config remove-default-cloud-model Remove cloud model default
enkaliprime config show-cloud Show cloud status and models

AI Behavior Customization

Command Description
enkaliprime config set-system-prompt Define AI behavior and personality
enkaliprime config get-system-prompt Show current system prompt
enkaliprime config remove-system-prompt Remove custom system prompt
enkaliprime config set-ai-personality Set AI name and personality traits
enkaliprime config get-ai-personality Show AI personality settings
enkaliprime config remove-ai-personality Remove AI personality config
enkaliprime config reset-ai-behavior Reset all AI behavior to defaults

Global Default Model

Command Description
enkaliprime config set-default-model Choose from ALL available models
enkaliprime config get-default-model Show current global default
enkaliprime config remove-default-model Remove global default

General Configuration

Command Description
enkaliprime config show-behavior Show all AI behavior settings
enkaliprime config show Show current configuration

๐Ÿ“ Session Commands

Command Description
enkaliprime session create Create new chat session
enkaliprime session current Show current session info
enkaliprime session end End current session
enkaliprime session list List all sessions
enkaliprime session clear-history Clear conversation history

๐Ÿ’ก Examples

Interactive Chat Session

# Global default model (recommended - no flags needed!)
enkaliprime chat interactive

# Remote AI with custom agent
enkaliprime chat interactive --agent "Code Assistant" --provider remote

# Local AI with configured Ollama model
enkaliprime chat interactive --provider ollama

# Cloud AI with powerful models
enkaliprime chat interactive --provider cloud --model gpt-oss:120b

# Local AI with specific model override
enkaliprime chat interactive --local --model codellama

# Cloud AI with custom personality
enkaliprime chat interactive --cloud --agent "Tech Guru"

# Web-augmented interactive chat
enkaliprime chat interactive --web --cloud --model gpt-oss:120b

# Web search with local AI
enkaliprime chat interactive --web --local --model mistral

Single Message Queries

# Global default model - quick question
enkaliprime chat ask "What is the capital of France?"

# Remote AI - explicit provider
enkaliprime chat ask "Explain quantum computing" --provider remote

# Local AI - private, no-cost query
enkaliprime chat ask "Explain quantum computing" --provider ollama

# Cloud AI - powerful model, no local hardware needed
enkaliprime chat ask "Explain quantum computing" --provider cloud --model gpt-oss:120b

# Local AI with specific model
enkaliprime chat ask "Write a Python function" --local --model codellama

# Remote AI with custom agent
enkaliprime chat ask "Explain recursion" --agent "Programming Tutor"

# Web-augmented queries for current information
enkaliprime chat ask "What are the latest AI developments?" --web --cloud

# Web search with local AI for privacy
enkaliprime chat ask "What's new in web development frameworks?" --web --local

Configuration Management

# Global Default Model (Recommended First Step)
enkaliprime config set-default-model     # Choose from ALL available models
enkaliprime config get-default-model     # Show current global default
enkaliprime config remove-default-model  # Remove global default

# EnkaliPrime API Configuration
enkaliprime config set-api-key
enkaliprime config test-connection
enkaliprime config show

# Ollama Local AI Configuration
enkaliprime config set-ollama-model     # Set default local model
enkaliprime config get-ollama-model     # Show current local model
enkaliprime config show-ollama          # Show Ollama status & models
enkaliprime config remove-ollama-model  # Remove local model config

# Ollama Cloud AI Configuration
enkaliprime config set-ollama-cloud-key     # Set cloud API key
enkaliprime config get-ollama-cloud-key     # Show masked cloud key
enkaliprime config set-default-cloud-model  # Set default cloud model
enkaliprime config show-cloud               # Show cloud status & models

# AI Behavior Customization
enkaliprime config set-system-prompt        # Define AI behavior
enkaliprime config set-ai-personality       # Set AI name & traits
enkaliprime config reset-ai-behavior        # Reset to defaults
enkaliprime config show-behavior            # Show all AI settings

# Provider Management
enkaliprime chat providers              # List all available AI providers

Session Management

# Create a new session with custom agent
enkaliprime session create --name "Math Tutor" --avatar "๐ŸŽ“"

# Check current session
enkaliprime session current

# End the current session
enkaliprime session end

# Clear conversation history
enkaliprime session clear-history

๐Ÿ”ง Troubleshooting

Command Not Found Error

If you get "enkaliprime" command not found after installation:

Windows (PowerShell/Command Prompt)

Check if Python Scripts directory is in PATH:

where python
# This should show your Python installation directory

Add Python Scripts to PATH (run as Administrator):

setx PATH "%PATH%;C:\Python313\Scripts"  # Replace with your Python version

Or use full path:

& "C:\Users\%USERNAME%\AppData\Roaming\Python\Python313\Scripts\enkaliprime.exe" --help

Linux/macOS

Check PATH:

echo $PATH
which python3

Add to PATH in ~/.bashrc or ~/.zshrc:

export PATH="$HOME/.local/bin:$PATH"  # For user installations
# OR
export PATH="/usr/local/bin:$PATH"     # For system installations

Alternative Usage

Use Python module directly (recommended for PowerShell):

python -m enkaliprime_cli info
python -c "from enkaliprime_cli.main import app; import sys; sys.argv = ['enkaliprime', 'chat', 'interactive']; app()"

Use pipx for isolated installation:

pip install pipx
pipx install enkaliprime-cli
# Now enkaliprime command works globally

PowerShell Compatibility

If you experience glitches with loading animations in PowerShell:

  1. Disable progress display:

    $ProgressPreference = "SilentlyContinue"
    enkaliprime chat ask "Hello"
    
  2. Use Python directly:

    python -c "from enkaliprime_cli.main import app; import sys; sys.argv = ['enkaliprime', 'chat', 'ask', 'Hello']; app()"
    
  3. All animations are disabled for clean, instant responses across all platforms.

Ollama Setup Issues

"Ollama not available" error:

  1. Install Ollama:

    # Visit https://ollama.ai/ for installation instructions
    # Windows: winget install Ollama.Ollama
    # macOS: brew install ollama
    # Linux: curl -fsSL https://ollama.ai/install.sh | sh
    
  2. Start Ollama service:

    ollama serve
    # Keep this running in a separate terminal
    
  3. Pull a model:

    ollama pull llama2  # General purpose model
    ollama pull codellama  # Code-focused model
    
  4. Configure CLI:

    enkaliprime config set-ollama-model
    # Select your preferred model
    

Test Ollama connection:

enkaliprime config show-ollama
# Should show available models and โœ… status

Common Ollama issues:

  • Port conflict: Default port 11434 may be in use
  • Memory: Large models need sufficient RAM
  • Storage: Models require disk space (2-7GB each)

API Key Issues

EnkaliPrime API Key

"No API key configured" error:

enkaliprime config set-api-key
# Enter your API key when prompted

Test connection:

enkaliprime config test-connection

Ollama Cloud API Key

"Cloud API key not configured" error:

enkaliprime config set-ollama-cloud-key
# Get your key from https://ollama.com/settings/keys

Test cloud connection:

enkaliprime config show-cloud
# Should show โœ… status and available models

๐Ÿ” Security & Privacy

API Key Security

  • Encrypted Storage: All API keys stored securely using your system's keyring
  • No Plain Text: Keys are never displayed in full, only masked for security
  • Secure Prompts: Password-style input for all sensitive information
  • Validation: Automatic format checking for API keys
  • Multiple Keys: Separate secure storage for EnkaliPrime, Ollama Cloud, etc.

Privacy by Provider

Provider Privacy Level Data Handling
Remote (EnkaliPrime) ๐Ÿ”’ Cloud Processing Conversations processed on EnkaliPrime servers
Local (Ollama) ๐Ÿ›ก๏ธ Complete Privacy 100% local processing, zero data transmission
Cloud (Ollama Cloud) ๐Ÿ”’ Cloud Processing Conversations processed on Ollama's cloud infrastructure

AI Behavior Privacy

  • Local Storage: System prompts and AI personalities stored securely locally
  • No Transmission: Custom behaviors never sent to external services
  • Provider Isolation: Different behaviors can be configured per provider

Best Practices

# โœ… Good: Use interactive setup
enkaliprime config set-api-key

# โŒ Bad: Expose key in command history
enkaliprime config set-api-key --key ek_bridge_secret_key

๐ŸŽจ Terminal Features

Rich Formatting

  • Markdown rendering for AI responses
  • Syntax highlighting for code blocks
  • Colored output for better readability
  • Unicode emojis for visual appeal

Instant Responses

All AI responses appear instantly without loading animations for a clean, distraction-free experience.

Interactive Prompts

  • Auto-completion for commands and options
  • Input validation with helpful error messages
  • Confirmation prompts for destructive operations

๐Ÿ› ๏ธ Development

Setup for Development

git clone https://github.com/Auwanga/sdk.git
cd sdk/enkaliprime-cli
pip install -e ".[dev]"

Running Tests

pytest

Code Quality

# Format code
black enkaliprime_cli

# Sort imports
isort enkaliprime_cli

# Type checking
mypy enkaliprime_cli

# Linting
ruff enkaliprime_cli

๐Ÿ“„ License

This project is licensed under the MIT License โ€” see the LICENSE file for details.


๐Ÿค Contributing

We welcome contributions! Please see our Contributing Guide for details.


๐Ÿ“‹ Changelog

For a complete history of changes, see the CHANGELOG.md file.

Recent Major Changes

v0.7.4 - Complete Typing Effect Removal

  • โŒ Removed all spinner animations and loading indicators
  • โšก Instant AI responses with no delays
  • ๐Ÿงน Clean, distraction-free terminal interface

v0.7.3 - Copy-to-Clipboard

  • ๐Ÿ“‹ Copy code blocks directly to clipboard
  • ๐Ÿ“‹ Interactive menu for multi-code-block responses
  • ๐Ÿ”ง Cross-platform clipboard support with pyperclip

v0.7.2 - Global Default Model

  • ๐ŸŽฏ Single command to set default from ALL available models
  • ๐Ÿค– Automatic provider selection (local/cloud/remote)
  • โš™๏ธ No flags needed - just chat normally

v0.7.0 - Ollama Cloud Support

  • โ˜๏ธ Access large AI models without local hardware
  • ๐Ÿ”‘ Secure API key management for ollama.com
  • ๐Ÿš€ Models like GPT-OSS 120B available instantly

v0.6.0 - AI Behavior Customization

  • ๐ŸŽญ Custom system prompts and AI personalities
  • ๐Ÿง  Different behaviors for different providers
  • ๐Ÿ”„ Reset to defaults anytime

v0.5.0 - Local Ollama Integration

  • ๐Ÿ  Full local LLM support with Ollama
  • ๐Ÿ’ฐ Zero API costs for local inference
  • ๐Ÿ”’ Complete privacy with local processing

๐Ÿ”— Links

Resource Link
๐Ÿ“– Documentation api.enkaliprime.com/docs
๐Ÿ  Website api.enkaliprime.com
๐Ÿ“ฆ PyPI pypi.org/project/enkaliprime-cli
๐Ÿ™ GitHub github.com/Auwanga/sdk/tree/main/enkaliprime-cli

Built with โค๏ธ by the EnkaliPrime Team

ยฉ 2024 EnkaliPrime. All rights reserved.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

enkaliprime_cli-0.11.1.tar.gz (72.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

enkaliprime_cli-0.11.1-py3-none-any.whl (55.6 kB view details)

Uploaded Python 3

File details

Details for the file enkaliprime_cli-0.11.1.tar.gz.

File metadata

  • Download URL: enkaliprime_cli-0.11.1.tar.gz
  • Upload date:
  • Size: 72.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.3

File hashes

Hashes for enkaliprime_cli-0.11.1.tar.gz
Algorithm Hash digest
SHA256 d3641e36ddba29c2b830aab4b292428b64476b3bf472dfeb88c7d36788bc2648
MD5 d88149148247736dc4a1d8f724e73fb9
BLAKE2b-256 0195da7dcc9278fa78c212f46e7d018002449f390607325cd2331e540cfc7adb

See more details on using hashes here.

File details

Details for the file enkaliprime_cli-0.11.1-py3-none-any.whl.

File metadata

File hashes

Hashes for enkaliprime_cli-0.11.1-py3-none-any.whl
Algorithm Hash digest
SHA256 cc24b1e474412e7f802b203de13324fd67ba0cbefcdb92e9a9cdf6d17fafe71d
MD5 195659a8222f86107dce2268ce3d5910
BLAKE2b-256 582eff7ead2460be24033400cb3ddb1dc11316e0a23fcf26aafe4ccbd89bc6a4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page