|
| 1 | +# AI Vision Chat |
| 2 | +Chat with large languages models about the contents of an image via this native desktop client for Windows, macOS, and Linux. |
| 3 | + |
| 4 | +Features llava-13b which uses a vision encoder and Vicuna to allow you to discuss the contents of an image with the large language model (LLM). Additionally, it includes an API X-Ray tab so you can easily how the interaction with the API server works. |
| 5 | + |
| 6 | +The AI Vision Chat Desktop client is a powerful UI for allowing you to discuss the contents of an image with a chat bot. |
| 7 | + |
| 8 | +Built with Delphi using the FireMonkey [cross-platform development](https://www.embarcadero.com/products/delphi/) 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. |
| 9 | + |
| 10 | +It also features a REST integration with Replicate.com for hosting the model used in the client. You need to sign up for an API key to access that functionality. Replicate models can be run in the cloud or locally via docker. |
| 11 | + |
| 12 | +``` |
| 13 | +docker run -d -p 5000:5000 --gpus=all r8.im/yorickvp/llava-13b@sha256:6bc1c7bb0d2a34e413301fee8f7cc728d2d4e75bfab186aa995f63292bda92fc |
| 14 | +curl http://localhost:5000/predictions -X POST \ |
| 15 | +-H "Content-Type: application/json" \ |
| 16 | +-d '{"input": { |
| 17 | + "image": "https://url/to/file", |
| 18 | + "prompt": "...", |
| 19 | + "top_p": "...", |
| 20 | + "temperature": "...", |
| 21 | + "max_tokens": "..." |
| 22 | + }}' |
| 23 | +``` |
| 24 | + |
| 25 | +#AI Vision Chat Desktop client Screeshot on Windows |
| 26 | + |
| 27 | + |
| 28 | +Other Delphi AI clients: |
| 29 | + |
| 30 | +[SDXL Inpainting](https://github.com/FMXExpress/SDXL-Inpainting) |
| 31 | + |
| 32 | +[Stable Diffusion Desktop Client](https://github.com/FMXExpress/Stable-Diffusion-Desktop-Client) |
| 33 | + |
| 34 | +[CodeDroidAI](https://github.com/FMXExpress/CodeDroidAI) |
| 35 | + |
| 36 | +[ControlNet Sketch To Image](https://github.com/FMXExpress/ControlNet-Sketch-To-Image) |
| 37 | + |
| 38 | +[AutoBlogAI](https://github.com/FMXExpress/AutoBlogAI) |
| 39 | + |
| 40 | +[AI Code Translator](https://github.com/FMXExpress/AI-Code-Translator) |
| 41 | + |
| 42 | +[AI Playground](https://github.com/FMXExpress/AI-Playground-DesktopClient) |
| 43 | + |
| 44 | +[Song Writer AI](https://github.com/FMXExpress/Song-Writer-AI) |
| 45 | + |
| 46 | +[Stable Diffusion Text To Image Prompts](https://github.com/FMXExpress/Stable-Diffusion-Text-To-Image-Prompts) |
| 47 | + |
| 48 | +[Generative AI Prompts](https://github.com/FMXExpress/Generative-AI-Prompts) |
| 49 | + |
| 50 | +[Dreambooth Desktop Client](https://github.com/FMXExpress/DreamBooth-Desktop-Client) |
| 51 | + |
| 52 | +[Text To Vector Desktop Client](https://github.com/FMXExpress/Text-To-Vector-Desktop-Client) |
0 commit comments