Skip to content
This repository was archived by the owner on Mar 19, 2026. It is now read-only.

Commit fcfb94d

Browse files
authored
Merge pull request #318 from PrefectHQ/lc-pin
Pin below langchain core 0.3
2 parents a234180 + 341e2e3 commit fcfb94d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = [
88
dependencies = [
99
"prefect>=3.0",
1010
"jinja2>=3.1.4",
11-
"langchain_core>=0.2.9",
11+
"langchain_core>=0.2,<0.3",
1212
"langchain_openai>=0.1.8",
1313
"langchain-anthropic>=0.1.19",
1414
"markdownify>=0.12.1",
@@ -82,7 +82,7 @@ managed = true
8282
# ruff configuration
8383
[tool.ruff]
8484
target-version = "py311"
85-
lint.extend-select = ["I"]
85+
lint.select = ["I"] # Changed from lint.extend-select to select
8686
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" # default, but here in case we want to change it
8787

8888
[tool.ruff.format]

src/controlflow/agents/agent.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,6 @@ def _run_model(
298298
response: AIMessage = model.invoke(messages)
299299

300300
yield AgentMessage(agent=self, message=response)
301-
302301
create_markdown_artifact(
303302
markdown=f"""
304303
{response.content or '(No content)'}

0 commit comments

Comments
 (0)