File tree Expand file tree Collapse file tree 6 files changed +38
-4
lines changed
docs/source/getting_started Expand file tree Collapse file tree 6 files changed +38
-4
lines changed Original file line number Diff line number Diff line change 1- ## [ 0.10.0-beta.6] ( https://github.com/VinciGit00/Scrapegraph-ai/compare/v0.10.0-beta.5...v0.10.0-beta.6 ) (2024-05-09)
1+ ## [ 0.11.0-beta.2] ( https://github.com/VinciGit00/Scrapegraph-ai/compare/v0.11.0-beta.1...v0.11.0-beta.2 ) (2024-05-10)
2+
3+
4+ ### Features
5+
6+ * revert fetch_node ([ 864aa91] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/864aa91326c360992326e04811d272e55eac8355 ) )
7+
8+ ## [ 0.11.0-beta.1] ( https://github.com/VinciGit00/Scrapegraph-ai/compare/v0.10.0...v0.11.0-beta.1 ) (2024-05-10)
9+
10+
11+ ### Features
12+
13+ * Add support for passing pdf path as source ([ f10f3b1] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/f10f3b1438e0c625b7f2fa52faeb5a6c12116113 ) )
14+ * update info ([ 4ed0fb8] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/4ed0fb89c3e6068190a7775bedcb6ae65ba59d18 ) )
215
316
17+ ### Bug Fixes
18+
19+ * add json integration ([ 0ab31c3] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/0ab31c3fdbd56652ed306e60109301f60e8042d3 ) )
20+ * Augment the information getting fetched from a webpage ([ f8ce3d5] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/f8ce3d5916eab926275d59d4d48b0d89ec9cd43f ) )
21+ * fixed bugs for csv and xml ([ 324e977] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/324e977b853ecaa55bac4bf86e7cd927f7f43d0d ) )
22+ * limit python version to < 3.12 ([ a37fbbc] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/a37fbbcbcfc3ddd0cc66f586f279676b52c4abfe ) )
23+
24+
25+ ### CI
26+
27+ * ** release:** 0.10.0-beta.3 [ skip ci] ([ ad32298] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/ad32298e70fc626fd62c897e153b806f79dba9b9 ) )
28+ * ** release:** 0.10.0-beta.4 [ skip ci] ([ 548bff9] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/548bff9d77c8b4d2aadee40e966a06cc9d7fd4ab ) )
29+ * ** release:** 0.10.0-beta.5 [ skip ci] ([ 28c9dce] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/28c9dce7cbda49750172bafd7767fa48a0c33859 ) )
30+ * ** release:** 0.10.0-beta.6 [ skip ci] ([ 460d292] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/460d292af21fabad3fdd2b66110913ccee22ba91 ) )
31+
432### Bug Fixes
533
634* add json integration ([ 0ab31c3] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/0ab31c3fdbd56652ed306e60109301f60e8042d3 ) )
735
836## [ 0.10.0-beta.5] ( https://github.com/VinciGit00/Scrapegraph-ai/compare/v0.10.0-beta.4...v0.10.0-beta.5 ) (2024-05-09)
937
1038
39+
1140### Bug Fixes
1241
42+
1343* fixed bugs for csv and xml ([ 324e977] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/324e977b853ecaa55bac4bf86e7cd927f7f43d0d ) )
1444
1545## [ 0.10.0-beta.4] ( https://github.com/VinciGit00/Scrapegraph-ai/compare/v0.10.0-beta.3...v0.10.0-beta.4 ) (2024-05-09)
Original file line number Diff line number Diff line change @@ -44,9 +44,12 @@ Local models
4444
4545Remember to have installed in your pc ollama `ollama <https://ollama.com/> `
4646Remember to pull the right model for LLM and for the embeddings, like:
47+
4748.. code-block :: bash
4849
4950 ollama pull llama3
51+ ollama pull nomic-embed-text
52+ ollama pull mistral
5053
5154 After that, you can run the following code, using only your machine resources brum brum brum:
5255
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " scrapegraphai"
33
4- version = " 0.10.0b6 "
4+ version = " 0.11.0b2 "
55
66description = " A web scraping library based on LangChain which uses LLM and direct graph logic to create scraping pipelines."
77authors = [
Original file line number Diff line number Diff line change @@ -129,4 +129,4 @@ def execute(self, state):
129129 ]
130130
131131 state .update ({self .output [0 ]: compressed_document })
132- return state
132+ return state
Original file line number Diff line number Diff line change 66from .convert_to_json import convert_to_json
77from .prettify_exec_info import prettify_exec_info
88from .proxy_rotation import Proxy , parse_or_search_proxy , search_proxy_servers
9+ from .remover import remover
910from .save_audio_from_bytes import save_audio_from_bytes
1011from .sys_dynamic_import import dynamic_import , srcfile_import
Original file line number Diff line number Diff line change @@ -40,4 +40,4 @@ def remover(html_content: str) -> str:
4040 minimized_body = minify (str (body_content ))
4141 return "Title: " + title + ", Body: " + minimized_body
4242
43- return "Title: " + title + ", Body: No body content found"
43+ return "Title: " + title + ", Body: No body content found"
You can’t perform that action at this time.
0 commit comments