-
Notifications
You must be signed in to change notification settings - Fork 5.3k
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
Add missing assistant UI documentation steps #935
Add missing assistant UI documentation steps #935
Conversation
* Format documentation page for consistency
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #935 +/- ##
=======================================
Coverage 26.63% 26.63%
=======================================
Files 28 28
Lines 3777 3777
Branches 858 858
=======================================
Hits 1006 1006
Misses 2700 2700
Partials 71 71
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
Thanks
@victordibia thanks for the approve, I cannot merge the PR though, could you merge it? |
* Add missing assistant UI documentation steps * Format documentation page for consistency * Add missing step for installing the autogenra library
* Add missing assistant UI documentation steps * Format documentation page for consistency * Add missing step for installing the autogenra library
Why are these changes needed?
The documentation for building the autogen assitant ui libary locally seems to be incomplete -> see https://github.com/microsoft/autogen/tree/main/samples/apps/autogen-assistant#installation,
Install from Source
sectionThe current steps mention building the frontend, then running the application via the
autogenra ui
command.However, when following these steps, the user will the the error
pyenv: autogenra: command not found
which is expected since he did not build the python library.This PR adds the missing build/install local autogenra library step in the docs.
Additional changes: minor markdown enhancements to docs
Checks