Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/cat-test-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ jobs:
- name: Install the project
run: uv sync --all-extras --dev

- name: Check if GOOGLE_CREDENTIALS is set
run: |
if [ -z "${{ secrets.GOOGLE_CREDENTIALS }}" ]; then
echo "Error: GOOGLE_CREDENTIALS secret is not set!"
exit 1
fi

- name: Authenticate to Google Cloud
uses: google-github-actions/auth@v2
with:
Expand Down
28 changes: 21 additions & 7 deletions examples/team_recommender/readme.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,31 @@
# Local Setup

### Install Package Manager
- install [uv](https://docs.astral.sh/uv/getting-started/installation) - Python package manager
- install dependencies
```
- `brew install uv`

### install dependencies
```shell
uv sync
```
- setup environment
```
### Setup environment

```shell
cp .env.example .env
```
- populate your new `.env` file with required values

# Running the AI tests
- run from this directory:
### Running the AI tests

This is live documentation of a growing number of examples.
We have a challenge when adding new examples where we have to update previous
examples to follow refactoring updates we made.

So instead, just run the latest example from the repository:
```shell

```
uv run pytest

```shell
uv run pytest tests/example_7*/
```