Skip to content
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.

Commit

Permalink
Merge pull request #46 from dabumana/developer
Browse files Browse the repository at this point in the history
v1.0.4
  • Loading branch information
dabumana committed Jul 21, 2023
2 parents fe12bd5 + f220c51 commit 7717808
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,37 @@ Each new conversation can be exported once you finished your prompt requests, ke

***16K Models*** can process larger training sessions, but it depends on how much context can be found once the results are filtered and processed.

### Ready to use pod :octopus:

#### Requirements to virtualize:

- Docker

#### First run:

- Download installation script
```
curl -sL https://gist.github.com/dabumana/eaa4bce0a34b1b6cc68e6f54b70b6182/raw/install-caos.sh>>install-caos.sh
```
- Add permissions to the file
```
chmod +x install-caos.sh
```
- Now execute the following command, define the amount of cpus, do not forget to add your *API-KEY* for *OpenAI* and *ZeroGPT*, this script will create the pod and includes the environment variables required, once the pod completes the build stage will run for first time.

```
./install-caos.sh <Number of dedicated CPUs> <OpenAI-API-Key> <ZeroGPT-API-Key>
```
- Then a new file it's generated called caos.sh, this file requires permissions to run
```
chmod +x caos.sh
```
#### Daily use case:

- Next time you just need to run
```
./caos.sh
```
### Build :wrench:

Firts download the repository, installation process can be completed from the source using ***make*** and installing the required dependencies:
Expand Down
2 changes: 1 addition & 1 deletion src/service/layout.go
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ func generateLayoutContent() {
SetBackgroundColor(tcell.ColorBlack)
// Input
node.layout.promptArea.
SetPlaceholderStyle(tcell.StyleDefault.Background(tcell.ColorWhite)).
SetPlaceholderStyle(tcell.StyleDefault.Background(tcell.ColorDarkSlateGray)).
SetSelectedStyle(tcell.StyleDefault.Background(tcell.ColorPurple)).
SetTextStyle(tcell.StyleDefault.Background(tcell.Color100)).
SetBorderPadding(1, 1, 1, 1).
Expand Down

0 comments on commit 7717808

Please sign in to comment.