Skip to content

Commit

Permalink
docs: update documentation to reflect by default enabling of --webser…
Browse files Browse the repository at this point in the history
…ver in 0.11
  • Loading branch information
wsxiaoys committed May 10, 2024
1 parent a112b85 commit f719eed
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Tabby is broken up into several crates, each responsible for a different part of
- `crates/tabby-scheduler` - Defines jobs that need to run periodically for syncing and indexing code
- `crates/tabby-inference` - Defines interfaces for interacting with text generation models
- `crates/llama-cpp-bindings` - Raw bindings to talk with the actual models in C++ from Rust
- `ee/tabby-webserver` - The webserver for Tabby with privilege management and a chatbot playground. Also includes GraphQL API implementation. Must use `--webserver` on CLI to enable
- `ee/tabby-webserver` - The webserver for Tabby with privilege management and a chatbot playground. Also includes GraphQL API implementation.
- `ee/tabby-db` - The database backing the webserver
- `ee/tabby-ui` - Frontend for the Tabby webserver

Expand Down
1 change: 0 additions & 1 deletion ee/tabby-schema/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//! Defines behavior for the tabby webserver which allows users to interact with enterprise features.
//! Using the web interface (e.g chat playground) requires using this module with the `--webserver` flag on the command line.
mod dao;
mod env;
mod schema;
Expand Down
1 change: 0 additions & 1 deletion ee/tabby-webserver/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
//! Defines behavior for the tabby webserver which allows users to interact with enterprise features.
//! Using the web interface (e.g chat playground) requires using this module with the `--webserver` flag on the command line.
mod axum;
mod hub;
mod jwt;
Expand Down
6 changes: 3 additions & 3 deletions website/docs/administration/distributed/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ This feature is available in the **Team** and **Enterprise** Plans.

Tabby provides built-in distributed support for multi-node setups. This allows you to scale your Tabby deployment horizontally and distribute the workload across multiple GPU workers.

## Start the Webserver
## Start Tabby

Start the web server using the following command:
Start the web UI using the following command:

```bash
tabby serve --webserver
tabby serve
```

By doing so, the web server will operate without a model attached to it. If you send a POST request to `/v1/completions`, you will receive a `501 Not Implemented` error.
Expand Down

0 comments on commit f719eed

Please sign in to comment.