👧
Amica
Launch DemoTelegramGitHubTwitter
  • Welcome to Amica!
  • 🌸Overview
    • How Amica Works
    • Core Features
    • Amica Life
    • Emotion System
    • Other Features
    • Use Cases
    • Amica vs Other Tools
  • 🌳Getting Started
    • Quickstart Guide
    • Installing Amica
    • Next Steps
  • 🗣️Connecting LLMs (Your Core AI Chatbot Model)
    • Using LM Studio
    • Using LLaMA.cpp
    • Using Ollama
    • Using KoboldCpp
    • Using OpenAI
    • Using Oobabooga
    • Using OpenRouter
  • 🔊Connecting Speech Options (TTS)
    • Using SpeechT5
    • Using ElevenLabs
    • Using Coqui Local
    • Using Piper
    • Using Alltalk TTS
    • Using Kokoro TTS
    • Using RVC
  • 👂Connecting Microphone Options (STT)
    • Using whisper.cpp
  • 👁️Connecting Multi-Modal Modules
    • Using LLaVA
  • 🔧Other Guides
    • Using Window.ai
    • Using Moshi (Voice to Voice)
  • 🧩Plugin System
    • Plugins Intro
    • Getting Real World News on Amica
  • 🔌API System
    • External API for Agents
  • 🌻Tutorials
    • Creating new Avatars
    • Using Custom Assets
  • 🌺Contributing to Amica
    • Setting up your developer environment
    • Contributing to the Docs
    • Developing Amica
    • Adding Translations
Powered by GitBook
On this page
  • Step 1 - Install Oobabooga
  • Step 2 - Start the server
  • Step 3 - Configure Oobabooga
  • Step 4 - Enable the server in the client
Edit on GitHub
  1. Connecting LLMs (Your Core AI Chatbot Model)

Using Oobabooga

PreviousUsing OpenAINextUsing OpenRouter

Last updated 1 year ago

You can find the full Oobabooga documentation .

Step 1 - Install Oobabooga

python3 -m venv venv
source venv/bin/activate
# choose correct requirements.txt for your system
pip install -r requirements.txt
# install the openai extension
pip install -r extensions/openai/requirements.txt

Step 2 - Start the server

python server.py --api

Step 3 - Configure Oobabooga

Open http://127.0.0.1:7860/ in your browser and configure the server.

Make sure you load the model in the "Model" tab.

Step 4 - Enable the server in the client

Set ChatBot Backend to ChatGPT in the client settings:

settings -> ChatBot -> ChatBot Backend -> ChatGPT

Next, set the OpenAI URL to http://localhost:5000

settings -> ChatBot -> ChatGPT -> OpenAI URL -> http://localhost:5000
🗣️
here