mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-07-12 21:01:56 +08:00
This commit is contained in:
commit
2edf5a6e85
14
CHANGELOG.md
14
CHANGELOG.md
@ -1,6 +1,18 @@
|
||||
|
||||
## [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)
|
||||
|
||||
## [1.11.3](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.11.2...v1.11.3) (2024-07-25)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add llama 3.1 ([f872bdd](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/f872bdd24f9874660eea04f9ade570c96b6e7e93))
|
||||
|
||||
|
||||
### Docs
|
||||
|
||||
* prev version ([5c08eea](https://github.com/ScrapeGraphAI/Scrapegraph-ai/commit/5c08eea189d7ede6f29399a67d897aa3b3f6a7b0))
|
||||
|
||||
|
||||
## [1.11.2](https://github.com/ScrapeGraphAI/Scrapegraph-ai/compare/v1.11.1...v1.11.2) (2024-07-23)
|
||||
|
||||
|
||||
|
||||
@ -9,7 +9,7 @@ from scrapegraphai.utils import prettify_exec_info
|
||||
|
||||
graph_config = {
|
||||
"llm": {
|
||||
"model": "ollama/llama3",
|
||||
"model": "ollama/llama3.1",
|
||||
"temperature": 0,
|
||||
"format": "json", # Ollama needs the format to be specified explicitly
|
||||
# "base_url": "http://localhost:11434", # set ollama URL arbitrarily
|
||||
|
||||
@ -1,9 +1,8 @@
|
||||
[project]
|
||||
name = "scrapegraphai"
|
||||
|
||||
version = "1.12.1b1"
|
||||
|
||||
description = "A web scraping library based on LangChain which uses LLM and direct graph logic to create scraping pipelines."
|
||||
|
||||
authors = [
|
||||
{ name = "Marco Vinciguerra", email = "mvincig11@gmail.com" },
|
||||
{ name = "Marco Perini", email = "perinim.98@gmail.com" },
|
||||
|
||||
@ -51,6 +51,10 @@ models_tokens = {
|
||||
"falcon": 2048,
|
||||
"llama2": 4096,
|
||||
"llama3": 8192,
|
||||
"llama3:70b": 8192,
|
||||
"llama3.1":128000,
|
||||
"llama3.1:70b": 128000,
|
||||
"lama3.1:405b": 128000,
|
||||
"scrapegraph": 8192,
|
||||
"llava": 4096,
|
||||
"mixtral:8x22b-instruct": 65536,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user