mirror of
https://github.com/open-webui/docs
synced 2025-06-14 10:32:33 +00:00
save
This commit is contained in:
commit
0448ff6eb2
@ -209,6 +209,7 @@ Open WebUI consists of two primary components: the frontend and the backend (whi
|
||||
|
||||
Run the following commands to install:
|
||||
|
||||
For Linux/macOS:
|
||||
```sh
|
||||
git clone https://github.com/open-webui/open-webui.git
|
||||
cd open-webui/
|
||||
@ -217,21 +218,45 @@ cd open-webui/
|
||||
cp -RPp .env.example .env
|
||||
|
||||
# Building Frontend Using Node
|
||||
npm i
|
||||
npm install
|
||||
npm run build
|
||||
|
||||
# Serving Frontend with the Backend
|
||||
cd ./backend
|
||||
|
||||
# Optional, you can enable venv with to avoid collision with the system wide packages
|
||||
# python -m venv
|
||||
# ./venv/Scripts/activate
|
||||
# Optional: To install using Conda as your development environment, follow these instructions:
|
||||
# Create and activate a Conda environment
|
||||
conda create --name open-webui-env python=3.11
|
||||
conda activate open-webui-env
|
||||
|
||||
# Install dependencies
|
||||
pip install -r requirements.txt -U
|
||||
|
||||
# Start the application
|
||||
bash start.sh
|
||||
```
|
||||
|
||||
For Windows:
|
||||
```powershell
|
||||
git clone https://github.com/open-webui/open-webui.git
|
||||
cd open-webui
|
||||
|
||||
copy .env.example .env
|
||||
|
||||
npm install
|
||||
npm run build
|
||||
|
||||
cd .\backend
|
||||
|
||||
# Optional: To install using Conda as your development environment, follow these instructions:
|
||||
# Create and activate a Conda environment
|
||||
conda create --name open-webui-env python=3.11
|
||||
conda activate open-webui-env
|
||||
|
||||
pip install -r requirements.txt -U
|
||||
|
||||
start.bat
|
||||
```
|
||||
|
||||
You should have Open WebUI up and running at http://localhost:8080/. Enjoy! 😄
|
||||
|
||||
## Docker Compose
|
||||
|
@ -1,8 +1,3 @@
|
||||
---
|
||||
sidebar_position: 3
|
||||
title: "🧩 Pipelines"
|
||||
---
|
||||
|
||||
import { TopBanners } from "@site/src/components/TopBanners";
|
||||
|
||||
<TopBanners />
|
||||
|
@ -13,6 +13,12 @@ Here are some exciting tasks on our roadmap:
|
||||
- 🛡️ **Granular Permissions and User Groups**: Empower administrators to finely control access levels and group users according to their roles and responsibilities. This feature ensures robust security measures and streamlined management of user privileges, enhancing overall platform functionality.
|
||||
- 🔧 **Fine-tune Model (LoRA)**: Fine-tune your model directly from the user interface. This feature allows for precise customization and optimization of the chat experience to better suit your needs and preferences.
|
||||
- 📚 **Enhanced Documentation**: Elevate your setup and customization experience with improved, comprehensive documentation.
|
||||
- 🧑🤝🧑 **Teams Feature - Better User Management**: Enhance team collaboration and efficiency with improved user management features that streamline workflows and improve communication.
|
||||
- 📁 **Projects Feature - Better Documents Section**: Organize and manage project documentation more effectively, with enhanced tools and interfaces for easier access and better collaboration.
|
||||
- 📣 **Wakeword Detection**: Integrate voice activation features to improve accessibility and hands-free interaction within your platform.
|
||||
- 💻 **Better Code Execution**: Enable sophisticated coding capabilities including file uploads, using external libraries, and executing multiple programming languages within the platform.
|
||||
- 🤖 **Code Interpreter Function**: Implement a versatile code interpreter to enhance development processes and support various coding needs directly within the platform.
|
||||
- 💬 **"Discussions" Feature - Multi-user Native Solution with AI Chat**: Foster engaging and productive discussions among users with a multi-user chat feature that incorporates AI to improve communication and problem-solving.
|
||||
|
||||
### 🧑🔬 Research Tools
|
||||
|
||||
|
@ -72,6 +72,13 @@ const config: Config = {
|
||||
srcDark: "img/logo-dark.png",
|
||||
},
|
||||
items: [
|
||||
{
|
||||
type: "docSidebar",
|
||||
position: "left",
|
||||
sidebarId: "pipelines",
|
||||
label: "Pipelines",
|
||||
},
|
||||
|
||||
// {
|
||||
// type: "docSidebar",
|
||||
// sidebarId: "blog",
|
||||
|
@ -14,6 +14,12 @@ import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
|
||||
const sidebars: SidebarsConfig = {
|
||||
// By default, Docusaurus generates a sidebar from the docs folder structure
|
||||
tutorialSidebar: [{ type: "autogenerated", dirName: "." }],
|
||||
pipelines: [
|
||||
{
|
||||
type: "autogenerated",
|
||||
dirName: "pipelines",
|
||||
},
|
||||
],
|
||||
|
||||
// But you can create a sidebar manually
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user