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 ) )
2
15
3
16
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
+
4
32
### Bug Fixes
5
33
6
34
* add json integration ([ 0ab31c3] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/0ab31c3fdbd56652ed306e60109301f60e8042d3 ) )
7
35
8
36
## [ 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)
9
37
10
38
39
+
11
40
### Bug Fixes
12
41
42
+
13
43
* fixed bugs for csv and xml ([ 324e977] ( https://github.com/VinciGit00/Scrapegraph-ai/commit/324e977b853ecaa55bac4bf86e7cd927f7f43d0d ) )
14
44
15
45
## [ 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
44
44
45
45
Remember to have installed in your pc ollama `ollama <https://ollama.com/> `
46
46
Remember to pull the right model for LLM and for the embeddings, like:
47
+
47
48
.. code-block :: bash
48
49
49
50
ollama pull llama3
51
+ ollama pull nomic-embed-text
52
+ ollama pull mistral
50
53
51
54
After that, you can run the following code, using only your machine resources brum brum brum:
52
55
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " scrapegraphai"
3
3
4
- version = " 0.10.0b6 "
4
+ version = " 0.11.0b2 "
5
5
6
6
description = " A web scraping library based on LangChain which uses LLM and direct graph logic to create scraping pipelines."
7
7
authors = [
Original file line number Diff line number Diff line change @@ -129,4 +129,4 @@ def execute(self, state):
129
129
]
130
130
131
131
state .update ({self .output [0 ]: compressed_document })
132
- return state
132
+ return state
Original file line number Diff line number Diff line change 6
6
from .convert_to_json import convert_to_json
7
7
from .prettify_exec_info import prettify_exec_info
8
8
from .proxy_rotation import Proxy , parse_or_search_proxy , search_proxy_servers
9
+ from .remover import remover
9
10
from .save_audio_from_bytes import save_audio_from_bytes
10
11
from .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:
40
40
minimized_body = minify (str (body_content ))
41
41
return "Title: " + title + ", Body: " + minimized_body
42
42
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