-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
update README for new org #117
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,47 @@ | ||
# Locallm | ||
# AI Lab Recipes | ||
|
||
This repo contains recipes for building and running containerized AI and LLM Applications locally with podman. | ||
This repo contains recipes for building and running containerized AI and LLM Applications locally with [podman](https://podman.io/). | ||
|
||
These containerized AI recipes can be used to help developers quickly prototype new AI and LLM based applications, without the need for relying on any other externally hosted services. Since they are already containerized, it also helps developers move quickly from prototype to production. | ||
These containerized AI recipes can be used to help developers quickly prototype new AI and LLM based applications without the need to rely on any other externally hosted services. Since they are already containerized, it also helps developers move quickly from prototype to production. | ||
|
||
## Current Recipes: | ||
## Recipe Categories: | ||
|
||
* [Model Service](#model-service) | ||
* [Chatbot](#chatbot) | ||
* [Text Summarization](#text-summarization) | ||
* [Code Generation](#code-generation) | ||
* [RAG](#rag-application) (Retrieval Augmented Generation) | ||
* [Fine-tuning](#fine-tuning) | ||
* [Model Service](#model-services) | ||
* [Natural Language Processing](#natural-language-processing) | ||
* [Audio](#audio) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: Sort alphabetically |
||
* [Computer Vision](#computer-vision) | ||
* [Multimodal](#multimodal) | ||
|
||
### Model service | ||
|
||
A model service that can be used for various applications with various models is included in this repository. | ||
Learn how to build and run the model service here: [Llamacpp_python model service](/model_servers/llamacpp_python/README.md). | ||
### Model Services | ||
|
||
### Chatbot | ||
Model services can be used for various applications with various models to host endpoints developers can easily integrate into their applications. | ||
* [Llamacpp_python](/model_servers/llamacpp_python/README.md) | ||
* [Whispercpp](/model_servers/whispercpp/README.md) | ||
|
||
A simple chatbot using the [Streamlit UI](https://docs.streamlit.io/). Learn how to build and run this application here: [Chatbot](/chatbot-langchain/). | ||
|
||
### Text Summarization | ||
### Natural Language Processing | ||
|
||
An LLM app that can summarize arbitrarily long text inputs with the [Streamlit UI](https://docs.streamlit.io/). Learn how to build and run this application here: | ||
[Text Summarization](/summarizer-langchain/). | ||
* [Chatbot](/recipes/natural_language_processing/chatbot/) | ||
* [Text Summarization](/recipes/natural_language_processing/summarizer/) | ||
* [Code Generation](/recipes/natural_language_processing/code-generation/) | ||
* [RAG (Retrieval Augmented Generation)](/recipes/natural_language_processing/rag/) | ||
|
||
### Code generation | ||
### Audio | ||
|
||
A simple chatbot using the [Streamlit UI](https://docs.streamlit.io/). Learn how to build and run this application here: [Code Generation](/code-generation/). | ||
* [Audio Transcription](/recipes/audio/audio-to-text/) | ||
|
||
### Computer Vision | ||
|
||
* [Object Detection](/recipes/computer_vision/object_detection/) | ||
|
||
### Multimodal | ||
|
||
* [Image Understanding](/recipes/multimodal/image_understanding/) | ||
|
||
### RAG | ||
|
||
A chatbot using the [Streamlit UI](https://docs.streamlit.io/) and Retrieval Augmented Generation. Learn how to build and run this application here: [RAG](/rag-langchain/). | ||
|
||
### Fine Tuning | ||
|
||
This application allows a user to select a model and a data set they'd like to fine-tune that model on. | ||
Once the application finishes, it outputs a new fine-tuned model for the user to apply to other LLM services. | ||
Learn how to build and run this model training job here: [Fine-tuning](/finetune/). | ||
|
||
## Current Locallm Images built from this repository | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't beleive this is a recipe?