mirror of
https://github.com/VinciGit00/Scrapegraph-ai.git
synced 2026-07-04 21:00:36 +08:00
44 lines
1.1 KiB
Python
44 lines
1.1 KiB
Python
"""
|
|
Module for showing how JSONScraperMultiGraph multi works
|
|
"""
|
|
import os
|
|
import json
|
|
from dotenv import load_dotenv
|
|
from scrapegraphai.graphs import JSONScraperMultiGraph
|
|
|
|
load_dotenv()
|
|
|
|
deepseek_key = os.getenv("DEEPSEEK_APIKEY")
|
|
|
|
graph_config = {
|
|
"llm": {
|
|
"model": "deepseek-chat",
|
|
"openai_api_key": deepseek_key,
|
|
"openai_api_base": 'https://api.deepseek.com/v1',
|
|
},
|
|
"embeddings": {
|
|
"model": "ollama/nomic-embed-text",
|
|
"temperature": 0,
|
|
# "base_url": "http://localhost:11434", # set ollama URL arbitrarily
|
|
},
|
|
"verbose": True,
|
|
}
|
|
FILE_NAME = "inputs/example.json"
|
|
curr_dir = os.path.dirname(os.path.realpath(__file__))
|
|
file_path = os.path.join(curr_dir, FILE_NAME)
|
|
|
|
with open(file_path, 'r', encoding="utf-8") as file:
|
|
text = file.read()
|
|
|
|
sources = [text, text]
|
|
|
|
multiple_search_graph = JSONScraperMultiGraph(
|
|
prompt= "List me all the authors, title and genres of the books",
|
|
source= sources,
|
|
schema=None,
|
|
config=graph_config
|
|
)
|
|
|
|
result = multiple_search_graph.run()
|
|
print(json.dumps(result, indent=4))
|