Skip to content

Commit 2edf5a6

Browse files
authored
Merge branch 'main' into temp
2 parents 52643d5 + a735975 commit 2edf5a6

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1-
21
## [1.10.0-beta.7](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.10.0-beta.6...v1.10.0-beta.7) (2024-07-23)
32

3+
## [1.11.3](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.11.2...v1.11.3) (2024-07-25)
4+
5+
6+
### Bug Fixes
7+
8+
* add llama 3.1 ([f872bdd](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/f872bdd24f9874660eea04f9ade570c96b6e7e93))
9+
10+
11+
### Docs
12+
13+
* prev version ([5c08eea](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/5c08eea189d7ede6f29399a67d897aa3b3f6a7b0))
14+
15+
416
## [1.11.2](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.11.1...v1.11.2) (2024-07-23)
517

618

examples/local_models/smart_scraper_ollama.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
graph_config = {
1111
"llm": {
12-
"model": "ollama/llama3",
12+
"model": "ollama/llama3.1",
1313
"temperature": 0,
1414
"format": "json", # Ollama needs the format to be specified explicitly
1515
# "base_url": "http://localhost:11434", # set ollama URL arbitrarily

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[project]
22
name = "scrapegraphai"
3-
43
version = "1.12.1b1"
5-
64
description = "A web scraping library based on LangChain which uses LLM and direct graph logic to create scraping pipelines."
5+
76
authors = [
87
{ name = "Marco Vinciguerra", email = "[email protected]" },
98
{ name = "Marco Perini", email = "[email protected]" },

scrapegraphai/helpers/models_tokens.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@
5151
"falcon": 2048,
5252
"llama2": 4096,
5353
"llama3": 8192,
54+
"llama3:70b": 8192,
55+
"llama3.1":128000,
56+
"llama3.1:70b": 128000,
57+
"lama3.1:405b": 128000,
5458
"scrapegraph": 8192,
5559
"llava": 4096,
5660
"mixtral:8x22b-instruct": 65536,

0 commit comments

Comments
 (0)