Skip to content

Commit

Permalink
update GA
Browse files Browse the repository at this point in the history
  • Loading branch information
cornelcroi committed Aug 13, 2024
1 parent 70a2389 commit f730f10
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ permissions:

jobs:
security-checks:
uses: ./.github/workflows/run-security-checks.yml
uses: ./.github/workflows/ts-run-security-checks.yml
secrets: inherit
45 changes: 45 additions & 0 deletions .github/workflows/py-run-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Run Python tests

on:
push:
branches:
- main
paths:
- 'python/**'
pull_request:
types:
- opened
- edited

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: python

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Create and activate virtual environment
run: |
python -m venv .venv
source .venv/bin/activate
- name: Install dependencies
run: |
pip install --upgrade pip
pip install -r test_requirements.txt
- name: Run tests
run: |
python -m pytest src/tests/
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches:
- main
paths:
- 'typescript/**'
pull_request:
types:
- opened
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ on:
push:
branches:
- main
paths:
- 'typescript/**'
pull_request:
types:
- opened
Expand All @@ -18,6 +20,7 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11

- name: Link Checker
uses: lycheeverse/lychee-action@c053181aa0c3d17606addfe97a9075a32723548a
with:
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,13 +65,15 @@ The demo highlights the system's ability to handle complex, multi-turn conversat

Check out our [documentation](https://awslabs.github.io/multi-agent-orchestrator/) for comprehensive guides on setting up and using the Multi-Agent Orchestrator!

### Quick Install
### TypeScript Version

#### Installation

```bash
npm install multi-agent-orchestrator
```

### Usage
#### Usage

The following example demonstrates how to use the Multi-Agent Orchestrator with two different types of agents: a Bedrock LLM Agent with Converse API support and a Lex Bot Agent. This showcases the flexibility of the system in integrating various AI services.

Expand Down

0 comments on commit f730f10

Please sign in to comment.