We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbeba8b commit 8a5577eCopy full SHA for 8a5577e
nemoguardrails/colang/v1_0/runtime/flows.py
@@ -15,7 +15,8 @@
15
16
"""A simplified modeling of the CoFlows engine."""
17
18
-import uuid
+from __future__ import annotations
19
+
20
from dataclasses import dataclass, field
21
from enum import Enum
22
from time import time
@@ -26,7 +27,6 @@
26
27
28
from nemoguardrails.colang.v1_0.runtime.eval import eval_expression
29
from nemoguardrails.colang.v1_0.runtime.sliding import slide
-from nemoguardrails.rails.llm.config import RailsConfig
30
from nemoguardrails.utils import new_event_dict, new_uuid
31
32
0 commit comments