Skip to content

Commit ac6d200

Browse files
committed
Merge branch 'pre/beta' of https://github.com/VinciGit00/Scrapegraph-ai into pre/beta
2 parents cbd77df + 97c3fff commit ac6d200

File tree

4 files changed

+41
-2
lines changed

4 files changed

+41
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@ poetry.lock
3636
# lock files
3737
*.lock
3838
poetry.lock
39+

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [0.9.0-beta.8](https://github.com/VinciGit00/Scrapegraph-ai/compare/v0.9.0-beta.7...v0.9.0-beta.8) (2024-05-06)
2+
3+
4+
### Features
5+
6+
* add llava integration ([019b722](https://github.com/VinciGit00/Scrapegraph-ai/commit/019b7223dc969c87c3c36b6a42a19b4423b5d2af))
7+
18
## [0.9.0-beta.7](https://github.com/VinciGit00/Scrapegraph-ai/compare/v0.9.0-beta.6...v0.9.0-beta.7) (2024-05-06)
29

310

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "scrapegraphai"
33

4-
version = "0.9.0b7"
4+
version = "0.9.0b8"
55

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

scrapegraphai/helpers/models_tokens.py

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
"ollama": {
3333
"llama2": 4096,
3434
"llama3": 8192,
35+
"llava": 4096,
36+
"llava_next": 4096,
3537
"mistral": 8192,
3638
"codellama": 16000,
3739
"dolphin-mixtral": 32000,
@@ -71,5 +73,34 @@
7173
"mistral": {
7274
"mistralai/Mistral-7B-Instruct-v0.2": 32000
7375
},
74-
"hugging_face": {}
76+
"hugging_face": {
77+
"meta-llama/Meta-Llama-3-8B": 8192,
78+
"meta-llama/Meta-Llama-3-8B-Instruct": 8192,
79+
"meta-llama/Meta-Llama-3-70B": 8192,
80+
"meta-llama/Meta-Llama-3-70B-Instruct": 8192,
81+
"google/gemma-2b": 8192,
82+
"google/gemma-2b-it": 8192,
83+
"google/gemma-7b": 8192,
84+
"google/gemma-7b-it": 8192,
85+
"microsoft/phi-2": 2048,
86+
"openai-community/gpt2": 1024,
87+
"openai-community/gpt2-medium": 1024,
88+
"openai-community/gpt2-large": 1024,
89+
"facebook/opt-125m": 2048,
90+
"petals-team/StableBeluga2": 8192,
91+
"distilbert/distilgpt2": 1024,
92+
"mistralai/Mistral-7B-Instruct-v0.2": 32768,
93+
"gradientai/Llama-3-8B-Instruct-Gradient-1048k": 1040200,
94+
"NousResearch/Hermes-2-Pro-Llama-3-8B": 8192,
95+
"NousResearch/Hermes-2-Pro-Llama-3-8B-GGUF": 8192,
96+
"nvidia/Llama3-ChatQA-1.5-8B": 8192,
97+
"microsoft/Phi-3-mini-4k-instruct": 4192,
98+
"microsoft/Phi-3-mini-128k-instruct": 131072,
99+
"mlabonne/Meta-Llama-3-120B-Instruct": 8192,
100+
"cognitivecomputations/dolphin-2.9-llama3-8b": 8192,
101+
"cognitivecomputations/dolphin-2.9-llama3-8b-gguf": 8192,
102+
"cognitivecomputations/dolphin-2.8-mistral-7b-v02": 32768,
103+
"cognitivecomputations/dolphin-2.5-mixtral-8x7b": 32768,
104+
"TheBloke/dolphin-2.7-mixtral-8x7b-GGUF": 32768
105+
}
75106
}

0 commit comments

Comments
 (0)