- A user sends a command like
/build gnar
or!build gnar
in a Discord server. - Yumii queries the Mistral AI agent (temperature:
0.01
, model:NeMo
) with the provided champion name. - The API returns an optimal item build formatted as:
BUILD -> Doran's Ring > Hextech Gunblade > Nashor's Tooth > Rabadon's Deathcap > Void Staff > Zhonya's Hourglass
- Rust 🦀
- Poise (Discord framework)
- Tokio (Async runtime)
- Reqwest (HTTP requests)
- Serde (JSON parsing)
- Mistral AI (LLM API for processing builds)
- API URL: https://api.mistral.ai/v1/agents/completions
- Model : NeMo
- Max Tokens: 150
- System Prompt :
Using data from Blitz.gg, find the optimal item build for a specified League of Legends champion. Format the output ONLY in this way: 'BUILD -> Doran's Ring > Hextech Gunblade > Nashor's Tooth > Rabadon's Deathcap > Void Staff > Zhonya's Hourglass'
- Few-Shot Prompts
- input :
yasuo build
- output :
'BUILD -> Doran's Ring > Hextech Gunblade > Nashor's Tooth > Rabadon's Deathcap > Void Staff > Zhonya's Hourglass'
- input :
- clone the repo
- create .env file with
DISCORD_TOKEN
andMISTRAL_API_KEY
cargo run
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again! ❤️
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request