From c73ba91a665b80ea567574fcb11e3a917119009b Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Thu, 27 Apr 2023 15:39:48 +0200 Subject: [PATCH 1/2] docs: update README --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f8a08e34..2a376dd8 100644 --- a/README.md +++ b/README.md @@ -17,10 +17,11 @@ - Support for prompt templates - Doesn't shell-out, but uses C bindings for a faster inference and better performance. Uses [go-llama.cpp](https://github.com/go-skynet/go-llama.cpp) and [go-gpt4all-j.cpp](https://github.com/go-skynet/go-gpt4all-j.cpp). -Reddit post: https://www.reddit.com/r/selfhosted/comments/12w4p2f/localai_openai_compatible_api_to_run_llm_models/ - LocalAI is a community-driven project, focused on making the AI accessible to anyone. Any contribution, feedback and PR is welcome! It was initially created by [mudler](https://github.com/mudler/) at the [SpectroCloud OSS Office](https://github.com/spectrocloud). +Twitter: https://twitter.com/LocalAI_API +Reddit post: https://www.reddit.com/r/selfhosted/comments/12w4p2f/localai_openai_compatible_api_to_run_llm_models/ + ## Model compatibility It is compatible with the models supported by [llama.cpp](https://github.com/ggerganov/llama.cpp) supports also [GPT4ALL-J](https://github.com/nomic-ai/gpt4all) and [cerebras-GPT with ggml](https://huggingface.co/lxe/Cerebras-GPT-2.7B-Alpaca-SP-ggml). @@ -430,7 +431,7 @@ Feel free to open up a PR to get your project listed! - [x] Multi-model support - [x] Have a webUI! - [x] Allow configuration of defaults for models. -- [ ] Enable automatic downloading of models from a curated gallery, with only free-licensed models. +- [ ] Enable automatic downloading of models from a curated gallery, with only free-licensed models, directly from the webui. ## Star history From 0b000dd0434d0825f21553116f143639833438aa Mon Sep 17 00:00:00 2001 From: Ron Evans Date: Thu, 27 Apr 2023 17:14:38 +0200 Subject: [PATCH 2/2] examples: correct typo in README (#103) Signed-off-by: deadprogram --- examples/chatbot-ui/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/chatbot-ui/README.md b/examples/chatbot-ui/README.md index ff181cb4..75fd073f 100644 --- a/examples/chatbot-ui/README.md +++ b/examples/chatbot-ui/README.md @@ -19,7 +19,7 @@ cd LocalAI/examples/chatbot-ui wget https://gpt4all.io/models/ggml-gpt4all-j.bin -O models/ggml-gpt4all-j # start with docker-compose -docker compose up -d --build +docker-compose up -d --build ``` Open http://localhost:3000 for the Web UI.