Scrapegraph-ai/examples/graph_examples/search_graph_example.py
2024-04-06 14:39:19 +02:00

34 lines
701 B
Python

"""
Example of Search Graph
"""
import os
from dotenv import load_dotenv
from scrapegraphai.graphs import SearchGraph
from scrapegraphai.utils import convert_to_csv, convert_to_json
load_dotenv()
openai_key = os.getenv("OPENAI_APIKEY")
# Define the configuration for the graph
graph_config = {
"llm": {
"api_key": openai_key,
"model": "gpt-3.5-turbo",
"temperature": 0,
},
}
# Create the SmartScraperGraph instance
smart_scraper_graph = SearchGraph(
prompt="List me all the regions of Italy.",
config=graph_config
)
result = smart_scraper_graph.run()
print(result)
# Save to json and csv
convert_to_csv(result, "result")
convert_to_json(result, "result")