-
Notifications
You must be signed in to change notification settings - Fork 1.2k
docs(agent): Update agent docs flwr version to 1.35 #8001
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,7 +7,7 @@ groups messages into a conversation. | |
| Prefer the browser? Start with [Chat in your browser](quickstart.md). | ||
|
|
||
| ```{note} | ||
| This tutorial targets Flower 1.34.0. Flower Agent and `flwr chat` are | ||
| This tutorial targets Flower 1.35.0. Flower Agent and `flwr chat` are | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
After retargeting this tutorial to 1.35, its command list still omits Useful? React with 👍 / 👎. |
||
| experimental and may change between releases. | ||
| ``` | ||
|
|
||
|
|
@@ -27,8 +27,8 @@ You don't need to provide model credentials for a SuperGrid run. | |
| Use `uvx` to run the documented version in an isolated environment: | ||
|
|
||
| ```console | ||
| $ uvx --from flwr==1.34.0 flwr --version | ||
| flwr, version 1.34.0 | ||
| $ uvx --from flwr==1.35.0 flwr --version | ||
| flwr, version 1.35.0 | ||
| ``` | ||
|
|
||
| Running an explicit version keeps every command in this tutorial on the same | ||
|
|
@@ -48,7 +48,7 @@ address = "supergrid.flower.ai" | |
| If you maintain a custom file, ensure that section exists. Then log in: | ||
|
|
||
| ```console | ||
| $ uvx --from flwr==1.34.0 flwr login supergrid | ||
| $ uvx --from flwr==1.35.0 flwr login supergrid | ||
| ``` | ||
|
|
||
| Open the printed authentication link and complete sign-in. The CLI stores the | ||
|
|
@@ -57,7 +57,7 @@ resulting account credentials for later SuperGrid commands. | |
| ## Start a chat | ||
|
|
||
| ```console | ||
| $ uvx --from flwr==1.34.0 flwr chat | ||
| $ uvx --from flwr==1.35.0 flwr chat | ||
| ``` | ||
|
|
||
| ```{figure} ../_static/screenshots/flwr-chat.png | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For the newly specified 1.35 environment, lines 89–100 present config editing plus a restart as the only way to change the
flwr chatfederation and recommendflwr runfor frequent switching. Version 1.35 handles/federationdirectly inframework/py/flwr/cli/chat/chat_app.py:478-509, so this guide now sends users through an obsolete and substantially more disruptive workflow.Useful? React with 👍 / 👎.