Skip to content

Commit

Permalink
Release/v0.34.0 (#1298)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Vasily Vasinov <vasily@griptape.ai>
Co-authored-by: Zach Giordano <32624672+zachgiordano@users.noreply.github.com>
Co-authored-by: CJ Kindel <cjkindel@users.noreply.github.com>
Co-authored-by: Emily Danielson <2302515+emjay07@users.noreply.github.com>
Co-authored-by: dylanholmes <4370153+dylanholmes@users.noreply.github.com>
Co-authored-by: Andrew French <andrew@afren.ch>
Co-authored-by: Matt Vallillo <matt@griptape.ai>
Co-authored-by: Stefano Lottini <stefano.lottini@datastax.com>
Co-authored-by: James Clarendon <SavagePencil@users.noreply.github.com>
Co-authored-by: Michal <salin87@gmail.com>
Co-authored-by: Ikko Eltociear Ashimine <eltociear@gmail.com>
Co-authored-by: torabshaikh <torab.shaikh@gmail.com>
Co-authored-by: Aodhan Roche <aodhan@griptape.ai>
Co-authored-by: Kyle Roche <kyleroche@users.noreply.github.com>
Co-authored-by: hkhajgiwale <hkhajgiwale@paloaltonetworks.com>
Co-authored-by: Harsh Khajgiwale <13365920+hkhajgiwale@users.noreply.github.com>
Co-authored-by: Anush <anushshetty90@gmail.com>
Co-authored-by: datashaman <marlinf@datashaman.com>
Co-authored-by: William Price <82848178+william-price01@users.noreply.github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: billytrend-cohere <144115527+billytrend-cohere@users.noreply.github.com>
  • Loading branch information
1 parent cc4ffe5 commit 9fe2dcf
Show file tree
Hide file tree
Showing 301 changed files with 5,142 additions and 1,619 deletions.
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

- [ ] I have read and agree to the [contributing guidelines](https://github.com/griptape-ai/griptape#contributing).
- [ ] I have read and agree to the [contributing guidelines](https://github.com/griptape-ai/griptape#contributing).

**Describe the bug**
A clear and concise description of what the bug is.
Expand All @@ -22,8 +21,9 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Version [e.g. 0.5.1]

- OS: \[e.g. iOS\]
- Version \[e.g. 0.5.1\]

**Additional context**
Add any other context about the problem here.
5 changes: 2 additions & 3 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,12 @@ about: Suggest an idea for this project
title: ''
labels: enhancement
assignees: ''

---

- [ ] I have read and agree to the [contributing guidelines](https://github.com/griptape-ai/griptape#contributing).
- [ ] I have read and agree to the [contributing guidelines](https://github.com/griptape-ai/griptape#contributing).

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
A clear and concise description of what the problem is. Ex. I'm always frustrated when \[...\]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/init-bare-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ runs:
using: "composite"
steps:
- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4

- id: setup-python
name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -21,7 +21,7 @@ runs:

- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .venv
key: venv-bare-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
Expand Down
21 changes: 17 additions & 4 deletions .github/actions/init-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ runs:
using: "composite"
steps:
- name: Checkout actions
uses: actions/checkout@v3
uses: actions/checkout@v4

- id: setup-python
name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -21,7 +21,7 @@ runs:

- name: Load cached venv
id: cached-poetry-dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
Expand All @@ -30,13 +30,26 @@ runs:
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --with test --with dev --with docs --all-extras
shell: bash

- name: Activate venv
run: |
source $VENV
echo PATH=$PATH >> $GITHUB_ENV
shell: bash

- name: Get installed Playwright version
id: playwright-version
run: |
version=$(poetry run playwright/ -V | awk '{print $2}' | tr -d '\n')
echo "version=$version" >> $GITHUB_OUTPUT
shell: bash

- uses: actions/cache@v4
id: playwright-cache
with:
path: ${{ matrix.os == 'windows-latest' && '~\\AppData\\Local\\ms-playwright' || '~/.cache/ms-playwright' }}
key: '${{ runner.os }}-playwright-${{ steps.playwright-version.outputs.version }}'

- name: Install playwright
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: playwright install --with-deps
shell: bash
5 changes: 5 additions & 0 deletions .github/workflows/docs-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,11 @@ jobs:
ASTRA_DB_APPLICATION_TOKEN: ${{ secrets.INTEG_ASTRA_DB_APPLICATION_TOKEN }}
TAVILY_API_KEY: ${{ secrets.INTEG_TAVILY_API_KEY }}
EXA_API_KEY: ${{ secrets.INTEG_EXA_API_KEY }}
AMAZON_S3_BUCKET: ${{ secrets.INTEG_AMAZON_S3_BUCKET }}
AMAZON_S3_KEY: ${{ secrets.INTEG_AMAZON_S3_KEY }}
GT_CLOUD_BUCKET_ID: ${{ secrets.INTEG_GT_CLOUD_BUCKET_ID }}
GT_CLOUD_ASSET_NAME: ${{ secrets.INTEG_GT_CLOUD_ASSET_NAME }}

services:
postgres:
image: ankane/pgvector:v0.5.0
Expand Down
Loading

0 comments on commit 9fe2dcf

Please sign in to comment.