Skip to content

Commit

Permalink
Add missing assistant UI documentation steps (#935)
Browse files Browse the repository at this point in the history
* Add missing assistant UI documentation steps

* Format documentation page for consistency

* Add missing step for installing the autogenra library
  • Loading branch information
dragosMC91 authored Dec 18, 2023
1 parent b29f9a9 commit 056bf01
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions samples/apps/autogen-assistant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,20 @@ Project Structure:
```bash
npm install -g gatsby-cli
npm install --global yarn
cd frontend
yarn install
yarn build
```
For Windows users, to build the frontend, you may need alternative commands to build the frontend.
- For Windows users, to build the frontend, you may need alternative commands to build the frontend.
```bash
gatsby clean && rmdir /s /q ..\\autogenra\\web\\ui && (set \"PREFIX_PATH_VALUE=\" || ver>nul) && gatsby build --prefix-paths && xcopy /E /I /Y public ..\\autogenra\\web\\ui
```bash
gatsby clean && rmdir /s /q ..\\autogenra\\web\\ui && (set \"PREFIX_PATH_VALUE=\" || ver>nul) && gatsby build --prefix-paths && xcopy /E /I /Y public ..\\autogenra\\web\\ui
```
- Navigate to the `samples/apps/autogen-assistant` directory and install the `autogenra` library in your current Python environment:
````
```bash
pip install -e .
```
### Running the Application
Expand Down

0 comments on commit 056bf01

Please sign in to comment.