mirror of
https://github.com/mudler/LocalAI.git
synced 2025-05-20 10:35:01 +00:00

* wip Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * docs Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Update lotusdocs and hugo Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * rephrasing Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * fixups Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Latest fixups Signed-off-by: Ettore Di Giacinto <mudler@localai.io> * Adjust readme section Signed-off-by: Ettore Di Giacinto <mudler@localai.io> --------- Signed-off-by: Ettore Di Giacinto <mudler@localai.io>
101 lines
3.2 KiB
Markdown
101 lines
3.2 KiB
Markdown
+++
|
|
title = "Overview"
|
|
weight = 1
|
|
toc = true
|
|
description = "What is LocalAI?"
|
|
tags = ["Beginners"]
|
|
categories = [""]
|
|
author = "Ettore Di Giacinto"
|
|
icon = "info"
|
|
+++
|
|
|
|
# Welcome to LocalAI
|
|
|
|
LocalAI is your complete AI stack for running AI models locally. It's designed to be simple, efficient, and accessible, providing a drop-in replacement for OpenAI's API while keeping your data private and secure.
|
|
|
|
## Why LocalAI?
|
|
|
|
In today's AI landscape, privacy, control, and flexibility are paramount. LocalAI addresses these needs by:
|
|
|
|
- **Privacy First**: Your data never leaves your machine
|
|
- **Complete Control**: Run models on your terms, with your hardware
|
|
- **Open Source**: MIT licensed and community-driven
|
|
- **Flexible Deployment**: From laptops to servers, with or without GPUs
|
|
- **Extensible**: Add new models and features as needed
|
|
|
|
## Core Components
|
|
|
|
LocalAI is more than just a single tool - it's a complete ecosystem:
|
|
|
|
1. **[LocalAI Core](https://github.com/mudler/LocalAI)**
|
|
- OpenAI-compatible API
|
|
- Multiple model support (LLMs, image, audio)
|
|
- No GPU required
|
|
- Fast inference with native bindings
|
|
- [Github repository](https://github.com/mudler/LocalAI)
|
|
|
|
2. **[LocalAGI](https://github.com/mudler/LocalAGI)**
|
|
- Autonomous AI agents
|
|
- No coding required
|
|
- WebUI and REST API support
|
|
- Extensible agent framework
|
|
- [Github repository](https://github.com/mudler/LocalAGI)
|
|
|
|
3. **[LocalRecall](https://github.com/mudler/LocalRecall)**
|
|
- Semantic search
|
|
- Memory management
|
|
- Vector database
|
|
- Perfect for AI applications
|
|
- [Github repository](https://github.com/mudler/LocalRecall)
|
|
|
|
## Getting Started
|
|
|
|
The fastest way to get started is with our one-line installer:
|
|
|
|
```bash
|
|
curl https://localai.io/install.sh | sh
|
|
```
|
|
|
|
Or use Docker for a quick start:
|
|
|
|
```bash
|
|
docker run -p 8080:8080 --name local-ai -ti localai/localai:latest-aio-cpu
|
|
```
|
|
|
|
For more detailed installation options and configurations, see our [Getting Started guide](/basics/getting_started/).
|
|
|
|
## Key Features
|
|
|
|
- **Text Generation**: Run various LLMs locally
|
|
- **Image Generation**: Create images with stable diffusion
|
|
- **Audio Processing**: Text-to-speech and speech-to-text
|
|
- **Vision API**: Image understanding and analysis
|
|
- **Embeddings**: Vector database support
|
|
- **Functions**: OpenAI-compatible function calling
|
|
- **P2P**: Distributed inference capabilities
|
|
|
|
## Community and Support
|
|
|
|
LocalAI is a community-driven project. You can:
|
|
|
|
- Join our [Discord community](https://discord.gg/uJAeKSAGDy)
|
|
- Check out our [GitHub repository](https://github.com/mudler/LocalAI)
|
|
- Contribute to the project
|
|
- Share your use cases and examples
|
|
|
|
## Next Steps
|
|
|
|
Ready to dive in? Here are some recommended next steps:
|
|
|
|
1. [Install LocalAI](/basics/getting_started/)
|
|
2. [Explore available models](https://models.localai.io)
|
|
3. [Model compatibility](/model-compatibility/)
|
|
4. [Try out examples](https://github.com/mudler/LocalAI-examples)
|
|
5. [Join the community](https://discord.gg/uJAeKSAGDy)
|
|
6. [Check the LocalAI Github repository](https://github.com/mudler/LocalAI)
|
|
7. [Check the LocalAGI Github repository](https://github.com/mudler/LocalAGI)
|
|
|
|
|
|
## License
|
|
|
|
LocalAI is MIT licensed, created and maintained by [Ettore Di Giacinto](https://github.com/mudler).
|