A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/AI-QL/chat-ui below:

AI-QL/chat-ui: Single-File AI Chatbot UI with Multimodal & MCP Support: An All-in-One HTML File for a Streamlined Chatbot Conversational Interface

The UI of Chat is becoming increasingly complex, often encompassing an entire front-end project along with deployment solutions.

This repository aims to construct the entire front-end UI using a single HTML file, aiming for a minimalist approach to create a chatbot.

By simplifying the structure and key functions, developers can quickly set up and experiment with a functional chatbot, adhering to a slimmed-down project design philosophy.

Option 1: Chat with demo AIQL

The demo will use Llama-3.3-70B-Instruct by default

Multimodal image upload is only supported for vision models

MCP tools call necessitates a desktop backend and LLM support in OpenAI format, referencing Chat-MCP

Option 2: Download Index and open it locally (recommended) Option 3: Download Index and deploy it by python
cd /path/to/your/directory
python3 -m http.server 8000

Then, open your browser and access http://localhost:8000

Demo: https://www2.aiql.com

Option 5: Deploy your own Chatbot by Docker
docker run -p 8080:8080 -d aiql/chat-ui

Don't forget add app_port: 8080 in README.md

Option 7: Deploy within K8s Option 8: Integrated as a renderer within the desktop application

Demo: Chat-MCP

By default, the Chatbot will use API format as OpenAI ChatGPT.

You can insert your OpenAI API Key and change the Endpoint in configuration to use API from any other vendors

You can also download the config template from example and insert your API Key, then use it for quick configuration

If you're experiencing issues opening the page and a simple refresh isn't resolving the issue, please take the following steps:

Reset Interface Configuration
  1. Click Refresh icon on the upper right of Interface Configuration
  1. Click hidden botton on the right side of the index page
  2. Click Reset All Config icon
  1. Right-click your browser page and go to the Network section.
  2. Right-click on section table and clear your browser's cache and cookies to ensure you have the latest version of the page.
  3. Additionally, inspect the browser's Network section to see which resources are failing to load due to your location. This will provide you with more specific information about the issue.
  1. Introduce the image as sidecar container

    spec:
      template:
        metadata:
          labels:
            app: my-app
        spec:
          containers:
          - name: chat-ui
            image: aiql/chat-ui
            ports:
            - containerPort: 8080
  2. Add service

    apiVersion: v1
    kind: Service
    metadata:
      name: chat-ui-service
    spec:
      selector:
        app: my-app
      ports:
      - protocol: TCP
        port: 8080
        targetPort: 8080
      type: LoadBalancer
  3. You can access the port or add other ingress

    apiVersion: networking.k8s.io/v1
    kind: Ingress
    metadata:
      name: my-app-ingress
      annotations:
        nginx.ingress.kubernetes.io/rewrite-target: /$1
    spec:
      rules:
      - host: chat-ui.example.com
        http:
          paths:
          - path: /
            pathType: Prefix
            backend:
              service:
                name: chat-ui-service
                port:
                  number: 8080


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4