Skip to content

Commit abd0ea1

Browse files
authored
Merge pull request #500 from ScrapeGraphAI/497-abstract-graph-refactor
497 abstract graph refactor
2 parents 74ed8d0 + 53dc06a commit abd0ea1

File tree

108 files changed

+239
-823
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+239
-823
lines changed

examples/bedrock/csv_scraper_bedrock.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@
3333
"client": "client_name",
3434
"model": "bedrock/anthropic.claude-3-sonnet-20240229-v1:0",
3535
"temperature": 0.0
36-
},
37-
"embeddings": {
38-
"model": "bedrock/cohere.embed-multilingual-v3"
3936
}
4037
}
4138
# ************************************************

examples/bedrock/csv_scraper_graph_multi_bedrock.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@
2828
"client": "client_name",
2929
"model": "bedrock/anthropic.claude-3-sonnet-20240229-v1:0",
3030
"temperature": 0.0
31-
},
32-
"embeddings": {
33-
"model": "bedrock/cohere.embed-multilingual-v3"
3431
}
3532
}
3633

examples/bedrock/custom_graph_bedrock.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@
2828
"client": "client_name",
2929
"model": "bedrock/anthropic.claude-3-sonnet-20240229-v1:0",
3030
"temperature": 0.0
31-
},
32-
"embeddings": {
33-
"model": "bedrock/cohere.embed-multilingual-v3"
3431
}
3532
}
3633

examples/bedrock/json_scraper_bedrock.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@
3232
"client": "client_name",
3333
"model": "bedrock/anthropic.claude-3-sonnet-20240229-v1:0",
3434
"temperature": 0.0
35-
},
36-
"embeddings": {
37-
"model": "bedrock/cohere.embed-multilingual-v3"
3835
}
3936
}
4037

examples/bedrock/json_scraper_multi_bedrock.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@
1010
"client": "client_name",
1111
"model": "bedrock/anthropic.claude-3-sonnet-20240229-v1:0",
1212
"temperature": 0.0
13-
},
14-
"embeddings": {
15-
"model": "bedrock/cohere.embed-multilingual-v3"
1613
}
1714
}
1815
FILE_NAME = "inputs/example.json"

examples/bedrock/pdf_scraper_graph_bedrock.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
"client": "client_name",
1919
"model": "bedrock/anthropic.claude-3-sonnet-20240229-v1:0",
2020
"temperature": 0.0
21-
},
22-
"embeddings": {
23-
"model": "bedrock/cohere.embed-multilingual-v3"
2421
}
2522
}
2623

examples/bedrock/pdf_scraper_graph_multi_bedrock.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@
1111
"client": "client_name",
1212
"model": "bedrock/anthropic.claude-3-sonnet-20240229-v1:0",
1313
"temperature": 0.0
14-
},
15-
"embeddings": {
16-
"model": "bedrock/cohere.embed-multilingual-v3"
1714
}
1815
}
1916
# ***************

examples/bedrock/scrape_plain_text_bedrock.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@
3333
"client": "client_name",
3434
"model": "bedrock/anthropic.claude-3-sonnet-20240229-v1:0",
3535
"temperature": 0.0
36-
},
37-
"embeddings": {
38-
"model": "bedrock/cohere.embed-multilingual-v3"
3936
}
4037
}
4138

examples/bedrock/script_generator_bedrock.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,7 @@
1919
"model": "bedrock/anthropic.claude-3-sonnet-20240229-v1:0",
2020
"temperature": 0.0
2121
},
22-
"embeddings": {
23-
"model": "bedrock/cohere.embed-multilingual-v3"
24-
},
25-
"library": "beautifulsoup"
22+
"library": "beautifulsoup"
2623
}
2724

2825
# ************************************************

examples/bedrock/script_multi_generator_bedrock.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@
1515
"model": "bedrock/anthropic.claude-3-sonnet-20240229-v1:0",
1616
"temperature": 0.0
1717
},
18-
"embeddings": {
19-
"model": "bedrock/cohere.embed-multilingual-v3"
20-
},
21-
"library": "beautifulsoup"
18+
"library": "beautifulsoup"
2219
}
2320

2421
# ************************************************

0 commit comments

Comments
 (0)