Skip to content

Commit

Permalink
dep
Browse files Browse the repository at this point in the history
  • Loading branch information
hinthornw committed Mar 26, 2024
1 parent 4b06c34 commit f45ae90
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/actions/python-integration-tests/action.yml
Expand Up @@ -10,6 +10,9 @@ inputs:
openai-api-key:
description: "OpenAI API key"
required: false
anthropic-api-key:
description: "Anthropic API key"
required: false
runs:
using: "composite"
steps:
Expand All @@ -31,6 +34,7 @@ runs:
run: |
poetry install --with dev
poetry run pip install -U langchain
poetry run pip install -U langchain_anthropic
shell: bash
working-directory: python

Expand All @@ -48,6 +52,7 @@ runs:
LANGCHAIN_TRACING_V2: "true"
LANGCHAIN_API_KEY: ${{ inputs.langchain-api-key }}
OPENAI_API_KEY: ${{ inputs.openai-api-key }}
ANTHROPIC_API_KEY: ${{ inputs.anthropic-api-key }}
run: make doctest
shell: bash
working-directory: python
1 change: 1 addition & 0 deletions .github/workflows/integration_tests.yml
Expand Up @@ -49,6 +49,7 @@ jobs:
python-version: 3.11
langchain-api-key: ${{ secrets.LANGCHAIN_API_KEY }}
openai-api-key: ${{ secrets.OPENAI_API_KEY }}
anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }}

js_integration_test:
name: JS Integration Test
Expand Down

0 comments on commit f45ae90

Please sign in to comment.