Skip to content

Commit e11ef56

Browse files
committed
2 parents 518e304 + 0711073 commit e11ef56

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

README.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,21 @@ Built in functionality includes:
2020

2121
Built with [Delphi](https://www.embarcadero.com/products/delphi/) using the FireMonkey framework this client works on Windows, macOS, and Linux (and maybe Android+iOS) with a single codebase and single UI. At the moment it is specifically set up for Windows.
2222

23-
It features a REST integration with OpenAI.com (ChatGPT) and Replicate.com for providing source code generation functionality within the client. You need to sign up for API keys to access that functionality.
23+
It features a REST integration with OpenAI.com (ChatGPT) and Replicate.com for providing source code generation functionality within the client. You need to sign up for API keys to access that functionality. Replicate models can be run in the cloud or locally via docker.
24+
25+
```
26+
docker run -d -p 5000:5000 --gpus=all r8.im/replicate/vicuna-13b@sha256:6282abe6a492de4145d7bb601023762212f9ddbbe78278bd6771c8b3b2f2a13b
27+
curl http://localhost:5000/predictions -X POST -H "Content-Type: application/json" \
28+
-d '{"input": {
29+
"prompt": "...",
30+
"max_length": "...",
31+
"temperature": "...",
32+
"top_p": "...",
33+
"repetition_penalty": "...",
34+
"seed": "...",
35+
"debug": "..."
36+
}}'
37+
```
2438

2539
# CodeDroidAI Desktop client Screenshot on Windows
2640
![CodeDroidAI Desktop client on Windows](/screenshot.png)

0 commit comments

Comments
 (0)