Skip to content

Commit 3df0eaf

Browse files
authored
Merge branch 'main' into pre/beta
2 parents 228b97b + 0c34b76 commit 3df0eaf

File tree

8 files changed

+182
-4
lines changed

8 files changed

+182
-4
lines changed

CHANGELOG.md

+31-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,40 @@
1-
## [1.44.0-beta.1](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.43.1-beta.1...v1.44.0-beta.1) (2025-04-14)
1+
2+
## [1.46.0](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.45.0...v1.46.0) (2025-03-27)
3+
24

35

46
### Features
57

68
* add new proxy rotation ([8913d8d](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/8913d8d3af3a2809d3ddcbfa09cbf2c9982a19cd))
79

10+
* add new logo ([c085d6c](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/c085d6c7ffcbf446439de97c9f88f8eadba5909c))
11+
12+
## [1.45.0](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.44.0...v1.45.0) (2025-03-27)
13+
14+
15+
### Features
16+
17+
* add scrapeless logo ([ae60e2b](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/ae60e2b8bf7bda7519306cdd05d16c2c68538421))
18+
19+
## [1.44.0](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.43.1...v1.44.0) (2025-03-26)
20+
21+
22+
### Features
23+
24+
* add new model openai support ([087cbcb](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/087cbcbc8f93665eade60156f070ada5847f3e58))
25+
26+
## [1.43.1](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.43.0...v1.43.1) (2025-03-21)
27+
28+
29+
### Bug Fixes
30+
31+
* Fixes schema option not working ([df1645c](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/df1645c5ebc6bc2362992fec3887dcbedf519ba9))
32+
33+
34+
### CI
35+
36+
* **release:** 1.43.1-beta.1 [skip ci] ([bdf813e](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/bdf813eb03a60865050f4996b63f110ab3a366e7))
37+
838
## [1.43.1-beta.1](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.43.0...v1.43.1-beta.1) (2025-03-21)
939

1040

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,9 @@ The Official API Documentation can be found [here](https://docs.scrapegraphai.co
180180
<a href="https://scrape.do">
181181
<img src="https://raw.githubusercontent.com/VinciGit00/Scrapegraph-ai/main/docs/assets/scrapedo.png" alt="Stats" style="width: 11%;">
182182
</a>
183+
<a href="https://www.scrapeless.com/en?utm_source=github&utm_medium=ads&utm_campaign=scraping&utm_term=scrapegraphai">
184+
<img src="https://github.com/ScrapeGraphAI/Scrapegraph-ai/blob/main/docs/assets/scrapeless.png" alt="Stats" style="width: 11%;">
185+
</a>
183186
</div>
184187

185188
## 📈 Telemetry

docs/assets/logo_authors.png

-1.12 MB
Binary file not shown.

docs/assets/scrapegraphai_logo.svg

+145
Loading

docs/assets/scrapeless.png

22.2 KB
Loading

docs/source/scrapers/llm.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Then we can use them in the graph configuration as follows:
3030
3131
graph_config = {
3232
"llm": {
33-
"model": "llama3",
33+
"model": "ollama/llama3",
3434
"temperature": 0.0,
3535
"format": "json",
3636
},

pyproject.toml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
[project]
22
name = "scrapegraphai"
33

4-
version = "1.44.0b1"
5-
4+
version = "1.46.0"
65

76

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

scrapegraphai/helpers/models_tokens.py

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"gpt-4-turbo": 128000,
1515
"gpt-4-turbo-2024-04-09": 128000,
1616
"gpt-4-1106-preview": 128000,
17+
"gpt-4o-search-preview": 128000,
1718
"gpt-4-vision-preview": 128000,
1819
"gpt-4": 8192,
1920
"gpt-4-0613": 8192,

0 commit comments

Comments
 (0)