Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/integrations/langgraph-integration.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -260,11 +260,12 @@ from pydantic import BaseModel, Field
from tenacity import retry, stop_after_attempt

from art.langgraph import init_chat_model, wrap_rollout
from art.local import LocalBackend
from art.utils import iterate_dataset

# Initialize model and backend
model = art.Model(name="Qwen/Qwen2.5-7B-Instruct")
backend = art.LocalBackend()
backend = LocalBackend()

# Data models
class EmailResult(BaseModel):
Expand Down
1 change: 0 additions & 1 deletion src/art/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ def __init__(self, **kwargs):
"gather_trajectory_groups",
"trajectory_group_batches",
"Backend",
"LocalBackend",
"LocalTrainResult",
"ServerlessBackend",
"ServerlessTrainResult",
Expand Down