-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from kerthcet/cleanup/rename
Remove unnecessary files
- Loading branch information
Showing
33 changed files
with
1,736 additions
and
1,911 deletions.
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
name: Initialization Workflow | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
init: | ||
uses: kerthcet/github-workflow-as-kube/.github/workflows/[email protected] | ||
secrets: | ||
AGENT_TOKEN: ${{ secrets.AGENT_TOKEN }} |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Event Workflow | ||
|
||
on: | ||
issues: | ||
types: | ||
- opened | ||
issue_comment: | ||
types: | ||
- created | ||
pull_request_target: | ||
types: | ||
- opened | ||
- synchronize | ||
- labeled | ||
- unlabeled | ||
|
||
jobs: | ||
event-handler: | ||
uses: kerthcet/github-workflow-as-kube/.github/workflows/[email protected] | ||
secrets: | ||
AGENT_TOKEN: ${{ secrets.AGENT_TOKEN }} |
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
approvers: | ||
- kerthcet | ||
|
||
reviewers: | ||
- kerthcet |
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,50 +1,17 @@ | ||
# Llmaz | ||
# Console for LLMAZ | ||
|
||
**Llmaz**, pronounced as `/lima:z/`, is a building block for users to build their own LLM from A to Z. **We're the aborigines of Kubernetes.** | ||
A dashboard for [llmaz](https://github.com/InftyAI/llmaz) to interact with LLM workloads. | ||
|
||
This is mostly driven by several people who has great enthusiasm about AI at spare time, if you're one of this kind of people, please join us. | ||
## How to deploy | ||
|
||
🚀 All kinds of contributions are welcomed ! Please follow [Contributing](/CONTRIBUTING.md). | ||
Run `make launch` then visit `http://localhost:7860` for Console. | ||
|
||
## 🪂 How to run | ||
|
||
### Prerequisites | ||
|
||
- [Helm](https://helm.sh/) | ||
- [Kind](https://kind.sigs.k8s.io/) | ||
|
||
### Install | ||
|
||
```shell | ||
git clone https://github.com/InftyAI/Llmaz.git | ||
kind create cluster # ignore this if you already have a Kubernetes cluster | ||
helm install llmaz Llmaz/deploy/llmaz --create-namespace --namespace llmaz | ||
kubectl port-forward svc/llmaz 7860:7860 | ||
``` | ||
|
||
*Visit <http://localhost:7860> for WebUI* | ||
|
||
![webui](./images/webui.jpg) | ||
|
||
## ✨ Features | ||
|
||
- Foundational model management | ||
- Prompt management | ||
- Supervised Fine Tuning | ||
- Model Serving | ||
- Self-Instruct | ||
- Dataset management | ||
- RLHF | ||
- Evaluation | ||
- AI applications, RAG, Chatbot, etc. | ||
- ... | ||
|
||
Still under development, **Let's see what will happen !** | ||
![console](./docs/asserts/preview.jpg) | ||
|
||
## 👏 Contributors | ||
|
||
Thanks to all these contributors. You're the heroes. | ||
|
||
<a href="https://github.com/InftyAI/Llmaz/graphs/contributors"> | ||
<img src="https://contrib.rocks/image?repo=InftyAI/Llmaz" /> | ||
<a href="https://github.com/InftyAI/llmaz-webui/graphs/contributors"> | ||
<img src="https://contrib.rocks/image?repo=InftyAI/llmaz-webui" /> | ||
</a> |
File renamed without changes.
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,4 +1,3 @@ | ||
# from llmlite.apis import ChatLLM | ||
import torch | ||
|
||
|
||
|
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,4 +1,4 @@ | ||
from llmaz.serves.chatbot import Chatbot | ||
from console.serve.chatbot import Chatbot | ||
|
||
|
||
class Serve: | ||
|
File renamed without changes.
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,4 +1,4 @@ | ||
from llmaz.serves.serve import Serve | ||
from console.serve.serve import Serve | ||
|
||
|
||
class Engine: | ||
|
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
2 changes: 1 addition & 1 deletion
2
llmaz/webui/webui_finetune.py → console/webui/webui_finetune.py
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
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.