Skip to content

Commit

Permalink
update (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
rayrayraykk authored Nov 11, 2024
1 parent e32c152 commit 089dadb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/agentscope/web/workstation/workflow_node.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# -*- coding: utf-8 -*-
"""Workflow node opt."""
import ast
import copy
from abc import ABC, abstractmethod
from enum import IntEnum
from functools import partial
Expand Down Expand Up @@ -93,7 +94,7 @@ def __init__(
self.only_compile = only_compile

self.node_id = node_id
self.opt_kwargs = opt_kwargs
self.opt_kwargs = copy.deepcopy(opt_kwargs)
self.source_kwargs = source_kwargs
self.dep_opts = dep_opts
self.dep_vars = [opt.var_name for opt in self.dep_opts]
Expand Down

0 comments on commit 089dadb

Please sign in to comment.