-
Notifications
You must be signed in to change notification settings - Fork 115
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 #173 from rhatdan/summarizer
Miscellaneous fixes
- Loading branch information
Showing
5 changed files
with
14 additions
and
16 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
7 changes: 3 additions & 4 deletions
7
recipes/natural_language_processing/chatbot/quadlet/README.md
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,10 +1,9 @@ | ||
### Run chatbot as a systemd service | ||
|
||
```bash | ||
sudo cp chatbot.yaml /usr/share/containers/systemd/chatbot.yaml | ||
sudo cp chatbot.kube /usr/share/containers/chatbot.kube | ||
sudo cp chatbot.image /usr/share/containers/chatbot.image | ||
sudo /usr/libexec/podman/quadlet --dryrun (optional) | ||
(cd ../;make quadlet) | ||
sudo cp ../build/chatbot.yaml ../build/chatbot.kube ../build/chatbot.image /usr/share/containers/systemd/ | ||
sudo /usr/libexec/podman/quadlet --dryrun #optional | ||
sudo systemctl daemon-reload | ||
sudo systemctl start chatbot | ||
``` |
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,10 +1,9 @@ | ||
### Run rag as a systemd service | ||
|
||
```bash | ||
sudo cp rag.yaml /usr/share/containers/systemd/rag.yaml | ||
sudo cp rag.kube /usr/share/containers/rag.kube | ||
sudo cp rag.image /usr/share/containers/rag.image | ||
sudo /usr/libexec/podman/quadlet --dryrun (optional) | ||
(cd ../;make quadlet) | ||
sudo cp ../build/rag.yaml ../build/rag.kube ../build/rag.image /usr/share/containers/systemd/ | ||
sudo /usr/libexec/podman/quadlet --dryrun #optional | ||
sudo systemctl daemon-reload | ||
sudo systemctl start rag | ||
``` |
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
11 changes: 5 additions & 6 deletions
11
recipes/natural_language_processing/summarizer/quadlet/README.md
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,10 +1,9 @@ | ||
### Run summarizer as a systemd service | ||
|
||
```bash | ||
cp ../build/summarizer.yaml /etc/containers/systemd/summarizer.yaml | ||
cp ../build/summarizer.kube /etc/containers/summarizer.kube | ||
cp ../build/summarizer.image /etc/containers/summarizer.image | ||
/usr/libexec/podman/quadlet --dryrun (optional) | ||
systemctl daemon-reload | ||
systemctl start summarizer | ||
(cd ../;make quadlet) | ||
sudo cp ../build/summarizer.yaml ../build/summarizer.kube ../build/summarizer.image /usr/share/containers/systemd/ | ||
sudo /usr/libexec/podman/quadlet --dryrun #optional | ||
sudo systemctl daemon-reload | ||
sudo systemctl start summarizer | ||
``` |