Lowercase botserver/botbook references
This commit is contained in:
parent
9545db65f1
commit
8b004f1a89
7 changed files with 21 additions and 21 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
# BotServer Development Prompt Guide
|
# botserver Development Prompt Guide
|
||||||
|
|
||||||
**Version:** 6.1.0
|
**Version:** 6.1.0
|
||||||
**Purpose:** Consolidated LLM context for BotServer development
|
**Purpose:** Consolidated LLM context for botserver development
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
@ -101,7 +101,7 @@ Icons are stored in two locations (kept in sync):
|
||||||
|
|
||||||
## Project Overview
|
## Project Overview
|
||||||
|
|
||||||
BotServer is the core backend for General Bots - an open-source conversational AI platform built in Rust. It provides:
|
botserver is the core backend for General Bots - an open-source conversational AI platform built in Rust. It provides:
|
||||||
|
|
||||||
- **Bootstrap System**: Auto-installs PostgreSQL, MinIO, Redis, LLM servers
|
- **Bootstrap System**: Auto-installs PostgreSQL, MinIO, Redis, LLM servers
|
||||||
- **Package Manager**: Manages bot deployments and service lifecycle
|
- **Package Manager**: Manages bot deployments and service lifecycle
|
||||||
|
|
@ -259,7 +259,7 @@ info!("Processing request id={} user={}", req_id, user_id);
|
||||||
- Review src/ to identify reusable patterns and libraries
|
- Review src/ to identify reusable patterns and libraries
|
||||||
```
|
```
|
||||||
|
|
||||||
### BotServer Specifics
|
### botserver Specifics
|
||||||
|
|
||||||
```
|
```
|
||||||
- Sessions MUST be retrieved by id when session_id is present
|
- Sessions MUST be retrieved by id when session_id is present
|
||||||
|
|
|
||||||
10
README.md
10
README.md
|
|
@ -1,6 +1,6 @@
|
||||||
# General Bots - Enterprise-Grade LLM Orchestrator
|
# General Bots - Enterprise-Grade LLM Orchestrator
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
**A strongly-typed LLM conversational platform focused on convention over configuration and code-less approaches.**
|
**A strongly-typed LLM conversational platform focused on convention over configuration and code-less approaches.**
|
||||||
|
|
||||||
|
|
@ -31,12 +31,12 @@ General Bots is a **self-hosted AI automation platform** that provides:
|
||||||
### Installation
|
### Installation
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/GeneralBots/BotServer
|
git clone https://github.com/GeneralBots/botserver
|
||||||
cd BotServer
|
cd botserver
|
||||||
cargo run
|
cargo run
|
||||||
```
|
```
|
||||||
|
|
||||||
On first run, BotServer automatically sets up PostgreSQL, S3 storage, Redis cache, and downloads AI models.
|
On first run, botserver automatically sets up PostgreSQL, S3 storage, Redis cache, and downloads AI models.
|
||||||
|
|
||||||
The server will be available at `http://localhost:8080`.
|
The server will be available at `http://localhost:8080`.
|
||||||
|
|
||||||
|
|
@ -137,7 +137,7 @@ According to our dual licensing model, this program can be used either under the
|
||||||
|
|
||||||
## Support
|
## Support
|
||||||
|
|
||||||
- **GitHub Issues:** [github.com/GeneralBots/BotServer/issues](https://github.com/GeneralBots/BotServer/issues)
|
- **GitHub Issues:** [github.com/GeneralBots/botserver/issues](https://github.com/GeneralBots/botserver/issues)
|
||||||
- **Stack Overflow:** Tag questions with `generalbots`
|
- **Stack Overflow:** Tag questions with `generalbots`
|
||||||
- **Video Tutorial:** [7 AI General Bots LLM Templates](https://www.youtube.com/watch?v=KJgvUPXi3Fw)
|
- **Video Tutorial:** [7 AI General Bots LLM Templates](https://www.youtube.com/watch?v=KJgvUPXi3Fw)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,8 +53,8 @@ answer = HEAR
|
||||||
|
|
||||||
## Quick Links
|
## Quick Links
|
||||||
|
|
||||||
- **[GitHub Repository](https://github.com/GeneralBots/BotServer)**
|
- **[GitHub Repository](https://github.com/GeneralBots/botserver)**
|
||||||
- **[Issue Tracker](https://github.com/GeneralBots/BotServer/issues)**
|
- **[Issue Tracker](https://github.com/GeneralBots/botserver/issues)**
|
||||||
- **[Contributing Guide](../CONTRIBUTING.md)**
|
- **[Contributing Guide](../CONTRIBUTING.md)**
|
||||||
|
|
||||||
## Version
|
## Version
|
||||||
|
|
|
||||||
|
|
@ -28,8 +28,8 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||||
source ~/.cargo/env
|
source ~/.cargo/env
|
||||||
|
|
||||||
# Clone and build
|
# Clone and build
|
||||||
git clone https://github.com/GeneralBots/BotServer
|
git clone https://github.com/GeneralBots/botserver
|
||||||
cd BotServer
|
cd botserver
|
||||||
cargo build --release
|
cargo build --release
|
||||||
|
|
||||||
# Run as service
|
# Run as service
|
||||||
|
|
@ -162,8 +162,8 @@ apt update && apt install -y curl build-essential
|
||||||
# Install Rust and build
|
# Install Rust and build
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
||||||
source ~/.cargo/env
|
source ~/.cargo/env
|
||||||
git clone https://github.com/GeneralBots/BotServer
|
git clone https://github.com/GeneralBots/botserver
|
||||||
cd BotServer
|
cd botserver
|
||||||
cargo build --release
|
cargo build --release
|
||||||
|
|
||||||
# Run
|
# Run
|
||||||
|
|
|
||||||
|
|
@ -14,8 +14,8 @@ This guide will help you install, configure, and run your first General Bots ins
|
||||||
### 1. Clone the Repository
|
### 1. Clone the Repository
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
git clone https://github.com/GeneralBots/BotServer
|
git clone https://github.com/GeneralBots/botserver
|
||||||
cd BotServer
|
cd botserver
|
||||||
```
|
```
|
||||||
|
|
||||||
### 2. Run the Server
|
### 2. Run the Server
|
||||||
|
|
@ -243,6 +243,6 @@ Check your LLM configuration in the admin panel or verify API keys are set.
|
||||||
|
|
||||||
## Getting Help
|
## Getting Help
|
||||||
|
|
||||||
- **GitHub Issues**: [github.com/GeneralBots/BotServer/issues](https://github.com/GeneralBots/BotServer/issues)
|
- **GitHub Issues**: [github.com/GeneralBots/botserver/issues](https://github.com/GeneralBots/botserver/issues)
|
||||||
- **Stack Overflow**: Tag questions with `generalbots`
|
- **Stack Overflow**: Tag questions with `generalbots`
|
||||||
- **Documentation**: [docs.pragmatismo.com.br](https://docs.pragmatismo.com.br)
|
- **Documentation**: [docs.pragmatismo.com.br](https://docs.pragmatismo.com.br)
|
||||||
|
|
@ -453,7 +453,7 @@ Handler Execution
|
||||||
┌─────────────────────────────────────┐
|
┌─────────────────────────────────────┐
|
||||||
│ Single Server │
|
│ Single Server │
|
||||||
│ ┌─────────────────────────────┐ │
|
│ ┌─────────────────────────────┐ │
|
||||||
│ │ BotServer │ │
|
│ │ botserver │ │
|
||||||
│ └─────────────────────────────┘ │
|
│ └─────────────────────────────┘ │
|
||||||
│ ┌────────┐ ┌────────┐ ┌───────┐ │
|
│ ┌────────┐ ┌────────┐ ┌───────┐ │
|
||||||
│ │PostgreSQL│ │ Redis │ │ MinIO │ │
|
│ │PostgreSQL│ │ Redis │ │ MinIO │ │
|
||||||
|
|
@ -471,7 +471,7 @@ Handler Execution
|
||||||
┌───────────────┼───────────────┐
|
┌───────────────┼───────────────┐
|
||||||
│ │ │
|
│ │ │
|
||||||
┌────▼────┐ ┌─────▼────┐ ┌────▼────┐
|
┌────▼────┐ ┌─────▼────┐ ┌────▼────┐
|
||||||
│BotServer│ │BotServer │ │BotServer│
|
│botserver│ │botserver │ │botserver│
|
||||||
│ #1 │ │ #2 │ │ #3 │
|
│ #1 │ │ #2 │ │ #3 │
|
||||||
└────┬────┘ └─────┬────┘ └────┬────┘
|
└────┬────┘ └─────┬────┘ └────┬────┘
|
||||||
│ │ │
|
│ │ │
|
||||||
|
|
|
||||||
|
|
@ -188,7 +188,7 @@ All requests are logged to `privacy_requests` and `consent_history` tables with:
|
||||||
For questions about this template:
|
For questions about this template:
|
||||||
|
|
||||||
- **Documentation**: https://docs.pragmatismo.com.br/privacy-template
|
- **Documentation**: https://docs.pragmatismo.com.br/privacy-template
|
||||||
- **Issues**: https://github.com/GeneralBots/BotServer/issues
|
- **Issues**: https://github.com/GeneralBots/botserver/issues
|
||||||
- **Email**: support@pragmatismo.com.br
|
- **Email**: support@pragmatismo.com.br
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue