mirror of
https://github.com/hwchase17/langchain
synced 2024-11-16 06:13:16 +00:00
c776cfc599
1. integrate with [`Yuan2.0`](https://github.com/IEIT-Yuan/Yuan-2.0/blob/main/README-EN.md) 2. update `langchain.llms` 3. add a new doc for [Yuan2.0 integration](docs/docs/integrations/llms/yuan2.ipynb) --------- Co-authored-by: Harrison Chase <hw.chase.17@gmail.com> Co-authored-by: Bagatur <baskaryan@gmail.com>
38 lines
905 B
YAML
38 lines
905 B
YAML
---
|
|
name: CI / cd . / make spell_check
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
codespell:
|
|
name: (Check for spelling errors)
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install Dependencies
|
|
run: |
|
|
pip install toml
|
|
|
|
- name: Extract Ignore Words List
|
|
run: |
|
|
# Use a Python script to extract the ignore words list from pyproject.toml
|
|
python .github/workflows/extract_ignored_words_list.py
|
|
id: extract_ignore_words
|
|
|
|
- name: Codespell
|
|
uses: codespell-project/actions-codespell@v2
|
|
with:
|
|
skip: guide_imports.json
|
|
ignore_words_list: ${{ steps.extract_ignore_words.outputs.ignore_words_list }}
|
|
exclude_file: libs/community/langchain_community/llms/yuan2.py
|