| --- |
| language: |
| - en |
| license: mit |
| tags: |
| - icarus |
| - conversational |
| - fine-tuned |
| - mistral |
| datasets: |
| - replirgtoer/icarus-knowledge |
| pipeline_tag: text-generation |
| base_model: mistralai/Mistral-7B-Instruct-v0.3 |
| --- |
| |
| # Icarus — Fine-Tuned Assistant |
|
|
| A conversational AI model fine-tuned from Mistral-7B-Instruct-v0.3 on the Icarus knowledge base. Designed to be a helpful, concise desktop assistant with PC control capabilities. |
|
|
| ## Usage |
|
|
| ```python |
| from transformers import pipeline |
| |
| pipe = pipeline("text-generation", model="replirgtoer/icarus-model") |
| result = pipe("How do I automate a task in Windows?", max_length=256) |
| print(result[0]["generated_text"]) |
| ``` |
|
|
| ## Capabilities |
|
|
| - PC control via structured commands (`[system:open:app]`, `[system:run:cmd]`, `[system:volume:up]`) |
| - Web search augmentation (`[search:query]`) |
| - Code generation, file management, system automation |
| - General Q&A about Windows, development, security, and automation |
|
|
| ## Training Data |
|
|
| Fine-tuned on the [Icarus knowledge base](https://huggingface.co/datasets/replirgtoer/icarus-knowledge) in ChatML format, covering instructions, facts, and Q&A pairs for Windows desktop automation. |
|
|
| ## License |
|
|
| MIT |
|
|