Skip to content

Commit 8a566ff

Browse files
committed
bugfix of the action
1 parent 71bd53d commit 8a566ff

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/pylint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
pip install pylint
2121
pip install -r requirements.txt
2222
- name: Analysing the code with pylint
23-
run:pylint scrapegraphai/**/*.py scrapegraphai/*.py examples/*.py tests/**/*.py
23+
run: pylint scrapegraphai/**/*.py scrapegraphai/*.py examples/*.py tests/**/*.py

scrapegraphai/builders/graph_builder.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ def _create_extraction_chain(self):
9595
"""
9696

9797
create_graph_prompt_template = """
98-
You are an AI that designs direct graphs for web scraping tasks. Your goal is to create a web scraping pipeline that is efficient and tailored to the user's requirements. You have access to a set of default nodes, each with specific capabilities:
98+
You are an AI that designs direct graphs for web scraping tasks.
99+
Your goal is to create a web scraping pipeline that is efficient and tailored to the user's requirements.
100+
You have access to a set of default nodes, each with specific capabilities:
99101
100102
{nodes_description}
101103

0 commit comments

Comments
 (0)