| 14 | == A solution that you can start using tomorrow |
| 15 | //dj//**AI** addresses all of these issues. |
| 16 | * It provides a graphical user interface that allows power users to create few-shot trainings per drag&drop and without any cryptic command language. Users with knowledge about the data and the desired operation can build it without any additional skills. |
| 17 | * Trainings can be stored as files and versioned as needed, for example in github or a DMS. |
| 18 | * The current status of a training in the editor can be immediately applied and tested. This shortens turnaround cycles and speeds up development. Realistic trainings with some examples that produce good results can be created in less than half a day. |
| 19 | * The training format is abstract and is translated to the specific LLM's syntax only when it's applied. This allows trying the same training on different models, or different versions of the same model. This way, it is also easy to determine which operations can run on simpler, cheaper versions of a model and which ones require more reasoning and linguistic capabilities. |
| 20 | * The AI request handling runs behind a web service. It is restricted to the functions defined by the training builders and is linked to a specific AI model such as {{{openAI GPT3.5}}} or {{{AlephAlpha luminous-extended}}}. Regular users can't change this. |
| 21 | * The interface supports single-request operations, chat operations (with context management) and single-request operations with dynamically generated trainings. This allows ontology, terminology or other knowledge injection into the request or automatic attachment of examples chosen by keywords in the source. |
| 22 | * Plugins for GPT3.5 and GPT4 and AlephAlpha are included. Other plugins will follow as required and can be added by implementing a simple software interface. |
| 23 | * The inference functionality with defined transforms (as called from the client software) can be easily integrated into your own software. Any environment able to send HTTP requests can access //dj//**AI** server by passing a local secret, the source data and the transform name. The service responds with the AI query result. |
| 24 | |
| 25 | The client is a .net 7 applications and runs on all recent Windows versions. HTTP access is possible from any environment (supporting HTTP requests). |
| 26 | |
| 27 | The //dj//**AI** server is a .net 7 Core application and runs on Windows and Linux. It does not need many resources, since it does not do the AI inference itself, but forwards the requests and trainings and returns the results. It can alternatively run on your desktop PC or as a server for many users in the network. |