Skip to content

Commit

Permalink
doc deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
vyokky committed Jun 26, 2024
1 parent 233aa6d commit 4526731
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/document_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
pip install mkdocs mkdocs-material
- name: Deploy to GitHub Pages
run:
cd documents
if [ -f "../mkdocs.yml" ]; then
cd ..
mkdocs gh-deploy --force
else
echo "Config file 'mkdocs.yml' does not exist."
exit 1
fi
run: |
cd docs
if [ -f "../mkdocs.yml" ]; then
cd ..
mkdocs gh-deploy --force
else
echo "Config file 'mkdocs.yml' does not exist."
exit 1
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1 change: 1 addition & 0 deletions documents/docs/getting_started/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ API_DEPLOYMENT_ID: "YOUR_AOAI_DEPLOYMENT", # The deployment id for the AOAI API
```
You can also non-visial model (e.g., GPT-4) for each agent, by setting `VISUAL_MODE: False` and proper `API_MODEL` (openai) and `API_DEPLOYMENT_ID` (aoai). You can also optionally set an backup LLM engine in the field of `BACKUP_AGENT` if the above engines failed during the inference. The `API_MODEL` can be any GPT models that can accept images as input.


#### Non-Visual Model Configuration
You can utilize non-visual models (e.g., GPT-4) for each agent by configuring the following settings in the `config.yaml` file:

Expand Down

0 comments on commit 4526731

Please # to comment.