Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
FMXExpress committed Aug 2, 2023
2 parents 518e304 + 0711073 commit e11ef56
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,21 @@ Built in functionality includes:

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.

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.
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.

```
docker run -d -p 5000:5000 --gpus=all r8.im/replicate/vicuna-13b@sha256:6282abe6a492de4145d7bb601023762212f9ddbbe78278bd6771c8b3b2f2a13b
curl http://localhost:5000/predictions -X POST -H "Content-Type: application/json" \
-d '{"input": {
"prompt": "...",
"max_length": "...",
"temperature": "...",
"top_p": "...",
"repetition_penalty": "...",
"seed": "...",
"debug": "..."
}}'
```

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

0 comments on commit e11ef56

Please sign in to comment.