diff options
author | Oxbian <oxbian@mailbox.org> | 2025-03-04 21:15:42 -0500 |
---|---|---|
committer | Oxbian <oxbian@mailbox.org> | 2025-03-04 21:15:42 -0500 |
commit | 43f26405e818aec791b28c50373843851fe1320e (patch) | |
tree | 81fe0cb2180afaebedc0edf65bd1c077ab267893 /README.md | |
parent | b9061a3e652cb7594397c38cd0078a47ddab960a (diff) | |
download | NAI-43f26405e818aec791b28c50373843851fe1320e.tar.gz NAI-43f26405e818aec791b28c50373843851fe1320e.zip |
feat: routing request
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -36,9 +36,19 @@ and there you go ! - Conversation are saved inside files in JSON in this folder `conv/`, and can be reused on others LLM. - In normal mode, conversation can be resumed by the LLM into bullet point list. - LLM can be configured thanks to configuration files in `config/` +- Requests are routed thanks to the LLM to other expert LLM. Code questions are send to a code expert, wikipedia questions are send to a system which provide better factual response. ## TODO - Color change if it's an user or the LLM - Async request to the LLM API - Start the real fun + +## Inspiration and reason + +Why in Rust ? + +Because I wanted to learn Rust, and the language is fast and powerful. + + +- [WilmerAI](https://github.com/SomeOddCodeGuy/WilmerAI/) a system where all the inferences are routed to others expert LLM. |