ClickUi: Your Cross-Platform AI Assistant for Local and Cloud Models

This repository profile is provided by osrepos.com, an open source repository discovery platform.

ClickUi: Your Cross-Platform AI Assistant for Local and Cloud Models

Summary

ClickUi is a powerful, open-source AI assistant built entirely in Python, designed for cross-platform use. It seamlessly integrates various AI models, speech recognition, and web scraping capabilities, offering both voice and text interaction modes. This tool allows users to leverage local or paid API models, providing a comprehensive and customizable AI experience directly on their computer.

Repository Information

Analyzed by OSRepos on December 9, 2025

Topics

Click on any tag to explore related repositories

Use at your own risk

OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.

ClickUi: Your Cross-Platform AI Assistant for Local and Cloud Models

Introduction

ClickUi is an innovative, open-source AI assistant built entirely in Python, designed to bring the power of artificial intelligence directly to your desktop. It empowers users to interact with various AI models, supporting both local solutions like Ollama and paid API services such as OpenAI, Claude, and Google. With its intuitive interface, accessible via a simple Ctrl+k hotkey, ClickUi offers a seamless experience for voice and text interactions, file attachments, and integrated web searches. It aims to be the most widely used computer-based AI assistant, providing a versatile and customizable tool for enhanced productivity.

Installation

Getting started with ClickUi involves a few straightforward steps, primarily leveraging Conda for environment management. For Windows users, an Install.bat script is available for a simplified setup.

Manual Installation Steps:

  • Install Anaconda/Conda: Download and install Anaconda or Conda from https://www.anaconda.com/download/success.
  • Clone the Repository: Obtain the ClickUi source code by cloning its GitHub repository.
  • Create and Activate Conda Environment: Navigate to the cloned directory in your terminal and run:
    conda create --name click_ui --file conda_packages.txt
    conda activate click_ui
  • Install Python Dependencies: Install the required Python packages:
    pip install -r requirements.txt
  • Configure API Keys: Edit the .voiceconfig file in the root directory to set up your API keys and preferred engine/model.
  • Start the Program: Run python clickui.py from your activated Conda environment. Once you see "Ready!...", press Ctrl+k to launch the interface.

Examples

ClickUi integrates several powerful functionalities to provide a comprehensive AI experience.

Voice Interaction:
Leverage Whisper for automatic speech recognition and Kokoro for text-to-speech, enabling natural voice conversations with your AI assistant.

import whisper as openai_whisper

whisper_model = openai_whisper.load_model("base", device='cuda')

def transcribe_audio(audio_data, samplerate):
    # ... (simplified for brevity) ...
    result = whisper_model.transcribe(temp_wav_name, fp16=False)
    return result["text"]

Text Chat:
Engage with AI models through a familiar text-based chat interface, supporting direct queries and responses.

class ChatDialog(QWidget):
    # ...
    def handle_reply_send(self):
        text = self.reply_line.text().strip()
        if text:
            self.add_message(text, role="user")
            self.reply_line.clear()
            # ... AI processing ...

File Attachments:
Easily attach text-based files (e.g., .txt, .csv, .xlsx) via drag-and-drop, allowing the AI to process and respond based on their content.

class FileDropLineEdit(QLineEdit):
    file_attached = Signal(list)

    def dropEvent(self, event):
        if event.mimeData().hasUrls():
            attachments = []
            for url in event.mimeData().urls():
                file_path = url.toLocalFile()
                ext = os.path.splitext(file_path)[1].lower()
                if ext in ['.txt', '.csv', '.xlsx', '.xls']:
                    # ... read file content ...
                    attachments.append({'filename': file_name, 'content': content})
            if attachments:
                self.attachments = attachments
                self.file_attached.emit(attachments)
            event.acceptProposedAction()
        else:
            super().dropEvent(event)

Google Search Integration:
Perform real-time Google searches directly from the assistant to fetch up-to-date information and enhance AI responses.

def google_search(query: str) -> str:
    # ...
    url = f"https://www.google.com/search?q={encoded_query}"
    with sync_playwright() as p:
        browser = p.chromium.launch(headless=True, args=["--disable-blink-features=AutomationControlled"])
        page = context.new_page()
        page.goto(url)
        page.wait_for_load_state("networkidle")
        html = page.content()
        browser.close()
    soup = BeautifulSoup(html, 'html.parser')
    text = soup.get_text()
    cleaned_text = ' '.join(text.split())[0:5000]
    return cleaned_text

AI Models Integration:
ClickUi supports a wide range of AI models, including OpenAI, Google, Ollama, Claude, Groq, and OpenRouter, allowing users to switch between them based on their needs.

def call_openai(prompt: str, model_name: str, reasoning_effort: str) -> str:
    import openai
    # ...
    openai.api_key = OPENAI_API_KEY
    # ... API call logic ...
    try:
        response = openai.chat.completions.create(**api_params)
    except Exception as e:
        print(f"Error connecting to OpenAI: {e}")
        return ""
    # ... response handling ...

Why Use It

ClickUi stands out as a versatile and powerful AI assistant for several reasons:

  • Unparalleled Versatility: Seamlessly switch between various local and cloud-based AI models, offering flexibility to choose the best tool for any task.
  • Comprehensive Feature Set: From natural voice interactions and text chat to intelligent web scraping for property lookups and Google searches, ClickUi provides a rich suite of tools.
  • Open-Source Empowerment: Being open-source, ClickUi encourages community contributions and allows for deep customization, ensuring it evolves with user needs.
  • Cross-Platform Accessibility: Built purely in Python, it's designed to run efficiently across Windows, macOS, and Linux, making advanced AI accessible to everyone.
  • Enhanced Productivity: With quick access via a global hotkey and integrated functionalities, ClickUi streamlines workflows and boosts efficiency for daily tasks.

Links

Related repositories

Similar repositories that may be relevant next.

Agent Sandbox: Secure Local Development for AI Coding Agents

Agent Sandbox: Secure Local Development for AI Coding Agents

August 17, 2026

Agent Sandbox provides a robust and secure local development environment specifically designed for collaborating with AI coding agents. It ensures minimal filesystem access, configurable network egress policies, and secure secret injection, protecting your local machine from potentially risky agent operations. This project supports various AI agents and integrates seamlessly with both CLI and popular IDE devcontainer setups.

agent-harnessagent-sandboxagents
Agent-Memory: Persistent Memory for AI Coding Agents

Agent-Memory: Persistent Memory for AI Coding Agents

August 16, 2026

Agent-Memory provides persistent memory for AI coding agents, ensuring they remember past interactions and learned patterns across sessions. Built on the iii engine, it eliminates the need for re-explaining context, significantly improving agent efficiency and reducing token usage. This solution integrates seamlessly with various agents, offering a robust memory management system.

AIAgent MemoryLLM
code-session-memory: Automatic Vector Memory for AI Coding Sessions

code-session-memory: Automatic Vector Memory for AI Coding Sessions

August 15, 2026

code-session-memory provides automatic vector memory for various AI coding tools like OpenCode, Claude Code, Cursor, VS Code, Codex, and Gemini CLI. It indexes new messages into a vector database after each AI agent turn, enabling semantic search across all your past coding sessions. This tool ensures memory is shared across different platforms, enhancing developer productivity.

TypeScriptAIDeveloper Tools
json-render: The Generative UI Framework for Dynamic Interfaces

json-render: The Generative UI Framework for Dynamic Interfaces

August 12, 2026

json-render is a powerful Generative UI framework that allows developers to create dynamic, personalized user interfaces from natural language prompts. It ensures reliability by constraining AI-generated output to predefined components and actions, offering a predictable and safe way to build cross-platform UIs.

TypeScriptGenerative UIAI

Source repository

Open the original repository on GitHub.

14 counted GitHub visits

View on GitHub
OS
OSRepos

Analysis and discovery of open source repositories. Find interesting projects and follow their updates.

Monitor your website with YourWebsiteScore

OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of third-party repository code is at your own risk. Always review source code, dependencies, licenses, and security implications before running anything.

© 2025 OSRepos. Built with Nuxt 3 and lots of ❤️