Skip to content

Commit a5e3871

Browse files
committed
Merge branch 'main' into langgraph-samples
# Conflicts: # pyproject.toml # uv.lock
2 parents dedf931 + 57b104e commit a5e3871

36 files changed

Lines changed: 1151 additions & 790 deletions

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
runsOn: macos-latest
2525
runs-on: ${{ matrix.runsOn || matrix.os }}
2626
steps:
27-
- uses: astral-sh/setup-uv@v5
27+
- uses: astral-sh/setup-uv@cec208311dfd045dd5311c1add060b2062131d57 # v8
2828
- name: Print build information
2929
run: "echo head_ref: ${{ github.head_ref }}, ref: ${{ github.ref }}, os: ${{ matrix.os }}, python: ${{ matrix.python }}"
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3131
with:
3232
submodules: recursive
33-
- uses: actions/setup-python@v5
33+
- uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
3434
with:
3535
python-version: ${{ matrix.python }}
3636
- run: uv tool install poethepoet
@@ -56,7 +56,7 @@ jobs:
5656
uv run gevent_async/test/run_combined.py
5757
5858
- name: Upload junit-xml artifacts
59-
uses: actions/upload-artifact@v4
59+
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7
6060
if: always()
6161
with:
6262
name: junit-xml--${{github.run_id}}--${{github.run_attempt}}--${{ matrix.python }}--${{ matrix.os }}

hello_nexus/handler/service_handler.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
from __future__ import annotations
66

7-
import uuid
8-
97
import nexusrpc
108
from temporalio import nexus
119

@@ -33,7 +31,7 @@ async def my_workflow_run_operation(
3331
return await ctx.start_workflow(
3432
WorkflowStartedByNexusOperation.run,
3533
input,
36-
id=str(uuid.uuid4()),
34+
id=f"hello-nexus-workflow-{input.name}",
3735
)
3836

3937
# This is a Nexus operation that responds synchronously to all requests. That means

langchain/README.md

Lines changed: 0 additions & 30 deletions
This file was deleted.

langchain/activities.py

Lines changed: 0 additions & 34 deletions
This file was deleted.

langchain/langchain_interceptor.py

Lines changed: 0 additions & 181 deletions
This file was deleted.

langchain/starter.py

Lines changed: 0 additions & 47 deletions
This file was deleted.

langchain/worker.py

Lines changed: 0 additions & 44 deletions
This file was deleted.

0 commit comments

Comments
 (0)