Skip to content
Open
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
4 changes: 2 additions & 2 deletions integuru/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def url_to_curl(self, state: AgentState) -> AgentState:
master_node_id = self.curl_to_id_dict[curl]
else:
master_node_id = self.dag_manager.add_node(
node_type="master_curl", # Specify node type
node_type="master", # Specify node type
content={
"key": request,
"value": self.req_to_res_map[request]
Expand Down Expand Up @@ -376,7 +376,7 @@ def find_curl_from_content(self, state: AgentState) -> AgentState:
continue

curl_node_id = self.dag_manager.add_node(
node_type="curl", # Specify node type
node_type="cURL", # Specify node type
content={
"key": simplest_request,
"value": self.req_to_res_map[simplest_request]
Expand Down