Skip to content

Commit 8f4a13b

Browse files
authored
Merge pull request #437 from ScrapeGraphAI/main
allignment
2 parents f3cbbce + 2d7ce4f commit 8f4a13b

File tree

5 files changed

+54
-6
lines changed

5 files changed

+54
-6
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## [1.8.0](https://github.com/VinciGit00/Scrapegraph-ai/compare/v1.7.5...v1.8.0) (2024-06-30)
2+
3+
4+
### Features
5+
6+
* add new search engine avaiability and new tests ([073d226](https://github.com/VinciGit00/Scrapegraph-ai/commit/073d226723f5f03b960865d07408905b7a506180))
7+
* add research with bing + test function ([aa2160c](https://github.com/VinciGit00/Scrapegraph-ai/commit/aa2160c108764745a696ffc16038f370e9702c14))
8+
9+
10+
### Bug Fixes
11+
12+
* updated for schema changes ([aedda44](https://github.com/VinciGit00/Scrapegraph-ai/commit/aedda448682ce5a921a62e661bffb02478bab75f))
13+
14+
15+
### CI
16+
17+
* **release:** 1.7.0-beta.13 [skip ci] ([ce0a47a](https://github.com/VinciGit00/Scrapegraph-ai/commit/ce0a47aee5edbb26fd82e41f6688a4bc48a10822))
18+
* **release:** 1.7.0-beta.14 [skip ci] ([ec77ff7](https://github.com/VinciGit00/Scrapegraph-ai/commit/ec77ff7ea4eb071469c2fb53e5959d4ea1f73ad6))
19+
* **release:** 1.8.0-beta.1 [skip ci] ([bbfbbd9](https://github.com/VinciGit00/Scrapegraph-ai/commit/bbfbbd93be3c87c5f25e3c75ec7d677832d37467))
20+
121
## [1.8.0-beta.1](https://github.com/VinciGit00/Scrapegraph-ai/compare/v1.7.4...v1.8.0-beta.1) (2024-06-25)
222

323

@@ -7,6 +27,7 @@
727
* add research with bing + test function ([aa2160c](https://github.com/VinciGit00/Scrapegraph-ai/commit/aa2160c108764745a696ffc16038f370e9702c14))
828

929

30+
1031
### Bug Fixes
1132

1233
* updated for schema changes ([aedda44](https://github.com/VinciGit00/Scrapegraph-ai/commit/aedda448682ce5a921a62e661bffb02478bab75f))
@@ -17,6 +38,7 @@
1738
* **release:** 1.7.0-beta.13 [skip ci] ([ce0a47a](https://github.com/VinciGit00/Scrapegraph-ai/commit/ce0a47aee5edbb26fd82e41f6688a4bc48a10822))
1839
* **release:** 1.7.0-beta.14 [skip ci] ([ec77ff7](https://github.com/VinciGit00/Scrapegraph-ai/commit/ec77ff7ea4eb071469c2fb53e5959d4ea1f73ad6))
1940

41+
2042
## [1.7.4](https://github.com/VinciGit00/Scrapegraph-ai/compare/v1.7.3...v1.7.4) (2024-06-21)
2143

2244

README.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,32 @@ Please see the [contributing guidelines](https://github.com/VinciGit00/Scrapegra
191191
[![My Skills](https://skillicons.dev/icons?i=twitter)](https://twitter.com/scrapegraphai)
192192

193193
## 📈 Roadmap
194-
Check out the project roadmap [here](https://github.com/VinciGit00/Scrapegraph-ai/blob/main/docs/README.md)! 🚀
195194

196-
Wanna visualize the roadmap in a more interactive way? Check out the [markmap](https://markmap.js.org/repl) visualization by copy pasting the markdown content in the editor!
195+
We are working on the following features! If you are interested in collaborating right-click on the feature and open in a new tab to file a PR. If you have doubts and wanna discuss them with us, just contact us on [discord](https://discord.gg/uJN7TYcpNa) or open a [Discussion](https://github.com/VinciGit00/Scrapegraph-ai/discussions) here on Github!
196+
197+
```mermaid
198+
%%{init: {'theme': 'base', 'themeVariables': { 'primaryColor': '#5C4B9B', 'edgeLabelBackground':'#ffffff', 'tertiaryColor': '#ffffff', 'primaryBorderColor': '#5C4B9B', 'fontFamily': 'Arial', 'fontSize': '16px', 'textColor': '#5C4B9B' }}}%%
199+
graph LR
200+
A[DeepSearch Graph] --> F[Use Existing Chromium Instances]
201+
F --> B[Page Caching]
202+
B --> C[Screenshot Scraping]
203+
C --> D[Handle Dynamic Content]
204+
D --> E[New Webdrivers]
205+
206+
style A fill:#ffffff,stroke:#5C4B9B,stroke-width:2px,rx:10,ry:10
207+
style F fill:#ffffff,stroke:#5C4B9B,stroke-width:2px,rx:10,ry:10
208+
style B fill:#ffffff,stroke:#5C4B9B,stroke-width:2px,rx:10,ry:10
209+
style C fill:#ffffff,stroke:#5C4B9B,stroke-width:2px,rx:10,ry:10
210+
style D fill:#ffffff,stroke:#5C4B9B,stroke-width:2px,rx:10,ry:10
211+
style E fill:#ffffff,stroke:#5C4B9B,stroke-width:2px,rx:10,ry:10
212+
213+
click A href "https://github.com/VinciGit00/Scrapegraph-ai/issues/260" "Open DeepSearch Graph Issue"
214+
click F href "https://github.com/VinciGit00/Scrapegraph-ai/issues/329" "Open Chromium Instances Issue"
215+
click B href "https://github.com/VinciGit00/Scrapegraph-ai/issues/197" "Open Page Caching Issue"
216+
click C href "https://github.com/VinciGit00/Scrapegraph-ai/issues/197" "Open Screenshot Scraping Issue"
217+
click D href "https://github.com/VinciGit00/Scrapegraph-ai/issues/279" "Open Handle Dynamic Content Issue"
218+
click E href "https://github.com/VinciGit00/Scrapegraph-ai/issues/171" "Open New Webdrivers Issue"
219+
```
197220

198221
## ❤️ Contributors
199222
[![Contributors](https://contrib.rocks/image?repo=VinciGit00/Scrapegraph-ai)](https://github.com/VinciGit00/Scrapegraph-ai/graphs/contributors)

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
name = "scrapegraphai"
33

44

5-
version = "1.8.0b1"
6-
5+
version = "1.8.0"
76

87

98
description = "A web scraping library based on LangChain which uses LLM and direct graph logic to create scraping pipelines."

scrapegraphai/helpers/models_tokens.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,11 @@
8282
"claude2": 9000,
8383
"claude2.1": 200000,
8484
"claude3": 200000,
85-
"claude3.5": 200000
85+
"claude3.5": 200000,
86+
"claude-3-opus-20240229": 200000,
87+
"claude-3-sonnet-20240229": 200000,
88+
"claude-3-haiku-20240307": 200000,
89+
"claude-3-5-sonnet-20240620": 200000
8690
},
8791
"bedrock": {
8892
"anthropic.claude-3-haiku-20240307-v1:0": 200000,

scrapegraphai/nodes/search_internet_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def execute(self, state: dict) -> dict:
8484
You should return only the query string without any additional sentences. \n
8585
For example, if the user prompt is "What is the capital of France?",
8686
you should return "capital of France". \n
87-
If yuo return something else, you will get a really bad grade. \n
87+
If you return something else, you will get a really bad grade. \n
8888
USER PROMPT: {user_prompt}"""
8989

9090
search_prompt = PromptTemplate(

0 commit comments

Comments
 (0)