Skip to content

Providers Setup

Traliran edited this page Aug 12, 2026 · 1 revision

🔌 Providers & API Setup Guide

This guide provides step-by-step instructions for obtaining API keys, configuring endpoints, and setting up all supported cloud and local LLM providers in Traliran AI Hub.


☁️ Cloud AI Providers

1. OpenAI

2. Anthropic Claude

3. Google Gemini

4. Groq

5. DeepSeek

6. OpenRouter

7. GLM (Zhipu AI)

8. Qwen (Alibaba DashScope)


💻 Local & Self-Hosted Providers

9. Ollama

  • Installation: Download and install Ollama from https://ollama.com.

  • Default Endpoint: http://localhost:11434

  • Configuration (CRITICAL - CORS Setup): By default, Ollama blocks web applications running on different domains/ports. You must set the OLLAMA_ORIGINS environment variable before launching Ollama.

    Linux / macOS: export OLLAMA_ORIGINS="*" ollama serve

    Windows (PowerShell): $env:OLLAMA_ORIGINS="*" ollama serve

  • Supported Models: Any model pulled locally via command line (e.g., ollama run llama3.2, ollama run gemma2).

10. llama.cpp (llama-server)

  • Installation: Build or download pre-compiled binaries from https://github.com/ggerganov/llama.cpp.

  • Default Endpoint: http://localhost:8080

  • Configuration (CRITICAL - CORS Setup): Launch the llama-server executable with the --host and --cors flags enabled:

    ./llama-server -m your_model.gguf --host 0.0.0.0 --port 8080 --cors "*"

  • Notes: Native C/C++ execution for GGUF model files with minimal memory overhead.

Clone this wiki locally