-
Notifications
You must be signed in to change notification settings - Fork 896
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(typespec): Use typespec generated models (#766)
- **feat(typespec): Add granular integration definitions** - **feat(agents-api): Update integration defs** - **feat(integrations): Remove unused integrations** - **feat(typespec): Add provider cards** - **fix(typespec): Remove redundant wikipedia setup** - **refactor(integrations): Use typespec generated models** <!-- ELLIPSIS_HIDDEN --> ---- > [!IMPORTANT] > Refactor integration models to use typespec-generated models, add granular integration definitions, update agents API, and configure CI for linting and testing. > > - **Behavior**: > - Refactor `execute_integration()` in `execute_integration.py` to use `BaseIntegrationDef` instead of `IntegrationDef`. > - Remove unused integrations like `browserbase` and `hacker_news`. > - **Models**: > - Add `BaseIntegrationDef` and specific integration models like `BraveIntegrationDef`, `EmailIntegrationDef`, etc. > - Add provider cards for integrations like `BraveProviderCard`, `EmailProviderCard`, etc. > - **CI/CD**: > - Add `lint-integrations-service-pr.yml` and `test-integrations-service-pr.yml` for CI linting and testing. > - **Misc**: > - Update `pyproject.toml` to use `datamodel-code-generator` version `0.26.2`. > - Add `__main__.py` to `integrations-service` for entry point. > - Remove redundant setup in `wikipedia` integration. > > <sup>This description was created by </sup>[<img alt="Ellipsis" src="https://img.shields.io/badge/Ellipsis-blue?color=175173">](https://www.ellipsis.dev?ref=julep-ai%2Fjulep&utm_source=github&utm_medium=referral)<sup> for 191b319. It will automatically update as commits are pushed.</sup> <!-- ELLIPSIS_HIDDEN --> --------- Signed-off-by: Diwank Singh Tomer <[email protected]> Co-authored-by: creatorrr <[email protected]>
- Loading branch information
Showing
82 changed files
with
7,913 additions
and
1,704 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: Lint integrations-service | ||
run-name: ${{ github.actor }} is linting the code | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'integrations-service/**' | ||
push: | ||
paths: | ||
- 'integrations-service/**' | ||
|
||
jobs: | ||
Lint-And-Format: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install and configure Poetry | ||
uses: snok/install-poetry@v1 | ||
|
||
- name: Configure Poetry to use .venv | ||
run: | | ||
cd integrations-service | ||
poetry config virtualenvs.in-project true | ||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v4 | ||
with: | ||
path: integrations-service/.venv | ||
key: ${{ runner.os }}-integrations-service-poetry-${{ hashFiles('integrations-service/poetry.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-integrations-service-poetry- | ||
- name: Install dependencies | ||
run: | | ||
cd integrations-service | ||
poetry install | ||
- name: Lint and format | ||
run: | | ||
cd integrations-service | ||
poetry run poe format | ||
poetry run poe lint | ||
- uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: "refactor: Lint integrations-service (CI)" | ||
branch: ${{ github.head_ref }} | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Test integrations-service | ||
run-name: ${{ github.actor }} is testing the code | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- 'integrations-service/**' | ||
push: | ||
paths: | ||
- 'integrations-service/**' | ||
|
||
jobs: | ||
Test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install and configure Poetry | ||
uses: snok/install-poetry@v1 | ||
|
||
- name: Configure Poetry to use .venv | ||
run: | | ||
cd integrations-service | ||
poetry config virtualenvs.in-project true | ||
- name: Cache Poetry virtualenv | ||
uses: actions/cache@v4 | ||
with: | ||
path: integrations-service/.venv | ||
key: ${{ runner.os }}-integrations-service-poetry-${{ hashFiles('integrations-service/poetry.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-integrations-service-poetry- | ||
- name: Install dependencies | ||
run: | | ||
cd integrations-service | ||
poetry install | ||
- name: Run tests | ||
run: | | ||
cd integrations-service | ||
poetry run poe test --fail-limit 1 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.