Skip to content
Merged
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: 3 additions & 0 deletions src/pdl/pdl.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import argparse
import json
import sys
from asyncio import AbstractEventLoop
from pathlib import Path
from typing import Any, Literal, Optional, TypedDict

Expand Down Expand Up @@ -50,6 +51,8 @@ class InterpreterConfig(TypedDict, total=False):
replay: dict[str, Any]
"""Execute the program reusing some already computed values.
"""
event_loop: AbstractEventLoop
"""Event loop to schedule LLM calls."""


def exec_program(
Expand Down