Skip to content

Commit b2e0eae

Browse files
authored
chore: update twitter URLs (#1891)
1 parent b423a64 commit b2e0eae

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,6 @@ a developer and published to [npm](https://www.npmjs.com/package/@angchain/langg
5454
LangChain follows the [semver](https://semver.org/) versioning standard. However, as pre-1.0 software,
5555
even patch releases may contain [non-backwards-compatible changes](https://semver.org/#spec-item-4).
5656

57-
If your contribution has made its way into a release, we will want to give you credit on Twitter (only if you want though)!
58-
If you have a Twitter account you would like us to mention, please let us know in the PR or in another manner.
59-
6057
#### Integration releases
6158

6259
You can invoke the release flow by calling `pnpm release` from the package root.
@@ -366,6 +363,6 @@ Some concepts about channels:
366363
- It implements a way to `checkpoint` or "snapshot" the current state of the channel. This enables persistence across a graph.
367364
- It implements a way to `empty` or "restore" a channel from a checkpoint/snapshot. This enables us to create a new channel from a checkpoint variable stored in a database.
368365

369-
3. `channels/base.ts` is the base class for a channel and it can be extended to create any kind of channel. For example, `last_value.ts`, `binop.ts` are all types of channels.
370-
4. In Pregel, there is no limitation on the number of channels a node can subscribe to or write to. In LangGraph, however, currently every node maps to two channels. (1) A channel's value that it is subscribes to, i.e - is dependent on. (2) The channel that it writes to.
371-
5. `src/pregel/index.ts` holds all the business logic that uses channels and nodes in a pregel graph. `async *_transform` holds some of the most important logic because it is responsible for updating the channel's value and updating the checkpoint accordingly.
366+
1. `channels/base.ts` is the base class for a channel and it can be extended to create any kind of channel. For example, `last_value.ts`, `binop.ts` are all types of channels.
367+
2. In Pregel, there is no limitation on the number of channels a node can subscribe to or write to. In LangGraph, however, currently every node maps to two channels. (1) A channel's value that it is subscribes to, i.e - is dependent on. (2) The channel that it writes to.
368+
3. `src/pregel/index.ts` holds all the business logic that uses channels and nodes in a pregel graph. `async *_transform` holds some of the most important logic because it is responsible for updating the channel's value and updating the checkpoint accordingly.

docs/mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ extra:
360360
- icon: fontawesome/brands/github
361361
link: https://github.com/langchain-ai/langgraphjs
362362
- icon: fontawesome/brands/twitter
363-
link: https://twitter.com/LangChainAI
363+
link: https://x.com/langchain
364364

365365
validation:
366366
# https://www.mkdocs.org/user-guide/configuration/

0 commit comments

Comments
 (0)