Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

👥 Update LangChain people data #17743

Merged
merged 31 commits into from
Feb 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
a1c09d4
Adds people page action
jacoblee93 Feb 17, 2024
3b1d410
Update
jacoblee93 Feb 17, 2024
6ce8598
Update trigger
jacoblee93 Feb 17, 2024
cc2d938
Maintainers list
jacoblee93 Feb 17, 2024
02f1a8d
Add empty write path
jacoblee93 Feb 17, 2024
855f1ee
Update maintainers
jacoblee93 Feb 17, 2024
cac98d0
Update checkout command
jacoblee93 Feb 19, 2024
cb2d2db
Merge branch 'master' of https://github.com/langchain-ai/langchain in…
jacoblee93 Feb 20, 2024
9c24059
Add generated docs page, update script
jacoblee93 Feb 20, 2024
d44c150
Remove yarn.lock for now
jacoblee93 Feb 20, 2024
09006b2
Update CI
jacoblee93 Feb 20, 2024
b0bcddc
Use score
jacoblee93 Feb 20, 2024
86ff30a
Fix model
jacoblee93 Feb 20, 2024
bdc7598
Fix
jacoblee93 Feb 20, 2024
ef0d0a2
Fix
jacoblee93 Feb 20, 2024
e6df23d
Weighting
jacoblee93 Feb 20, 2024
5ef0381
Improve
jacoblee93 Feb 20, 2024
b9ff204
Fix query
jacoblee93 Feb 20, 2024
9185475
Typo
jacoblee93 Feb 20, 2024
ba61a8d
Lower threshold
jacoblee93 Feb 20, 2024
269f3dd
Update copy
jacoblee93 Feb 20, 2024
19d55ee
Bold
jacoblee93 Feb 20, 2024
d92e536
Reorder
jacoblee93 Feb 20, 2024
2c551f8
Update
jacoblee93 Feb 20, 2024
973abef
fix
jacoblee93 Feb 20, 2024
8fcd9a4
Revert
jacoblee93 Feb 20, 2024
1133a3f
Show all contributors above threshold
jacoblee93 Feb 20, 2024
74ada56
Update
jacoblee93 Feb 20, 2024
652d66a
Adjust thresholds
jacoblee93 Feb 20, 2024
b738599
Swap order
jacoblee93 Feb 21, 2024
d10a5d7
👥 Update LangChain people data
invalid-email-address Feb 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/actions/people/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM python:3.9

RUN pip install httpx PyGithub "pydantic==2.0.2" pydantic-settings "pyyaml>=5.3.1,<6.0.0"

COPY ./app /app

CMD ["python", "/app/main.py"]
11 changes: 11 additions & 0 deletions .github/actions/people/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Adapted from https://github.com/tiangolo/fastapi/blob/master/.github/actions/people/action.yml
name: "Generate LangChain People"
description: "Generate the data for the LangChain People page"
author: "Jacob Lee <jacob@langchain.dev>"
inputs:
token:
description: 'User token, to read the GitHub API. Can be passed in using {{ secrets.LANGCHAIN_PEOPLE_GITHUB_TOKEN }}'
required: true
runs:
using: 'docker'
image: 'Dockerfile'