Download Latest Version Magentic-UI 0.1.6_ Fara-7B source code.tar.gz (4.4 MB)
Email in envelope

Get an email when there's a new version of Magentic UI

Home / v0.1.6
Name Modified Size InfoDownloads / Week
Parent folder
Magentic-UI 0.1.6_ Fara-7B source code.tar.gz 2025-11-29 4.4 MB
Magentic-UI 0.1.6_ Fara-7B source code.zip 2025-11-29 4.5 MB
README.md 2025-11-29 1.9 kB
Totals: 3 Items   8.9 MB 2

Microsoft latest agentic model Fara-7B is now integrated in Magentic-UI:

1) First install magentic-ui with the fara extras:

:::bash
:::bash

python3 -m venv .venv source .venv/bin/activate pip install magentic-ui[fara]

2) In a seperate process, serve the Fara-7B model using vLLM:

:::bash

vllm serve "microsoft/Fara-7B" --port 5000 --dtype auto

3) First create a `fara_config.yaml` file with the following content:

:::yaml

model_config_local_surfer: &client_surfer provider: OpenAIChatCompletionClient config: model: "microsoft/Fara-7B" base_url: http://localhost:5000/v1 api_key: not-needed model_info: vision: true function_calling: true json_output: false family: "unknown" structured_output: false multiple_system_messages: false

orchestrator_client: client_surfer coder_client: client_surfer web_surfer_client: client_surfer file_surfer_client: client_surfer action_guard_client: client_surfer model_client: client_surfer

Note: if you are hosting vLLM on a different port or host, change the `base_url` accordingly.


Then launch Magentic-UI with the fara agent:

:::bash

magentic-ui --fara --port 8081 --config fara_config.yaml

Finally, navigate to <http://localhost:8081> to access the interface!

## What's Changed
* Update link for 'Tell me When' feature by @husseinmozannar in https://github.com/microsoft/magentic-ui/pull/402
* [WIP] Fara-7B in Magentic-UI by @husseinmozannar in https://github.com/microsoft/magentic-ui/pull/448


**Full Changelog**: https://github.com/microsoft/magentic-ui/compare/0.1.5...v0.1.6
Source: README.md, updated 2025-11-29