Skip to content

Commit c7ec114

Browse files
committed
docs(refactor): changed example
1 parent 0c15947 commit c7ec114

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/openai/search_graph_openai.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
graph_config = {
1818
"llm": {
1919
"api_key": openai_key,
20-
"model": "gpt-4-turbo",
20+
"model": "gpt-3.5-turbo",
2121
},
2222
"max_results": 2,
2323
"verbose": True,
@@ -28,7 +28,7 @@
2828
# ************************************************
2929

3030
search_graph = SearchGraph(
31-
prompt="List me the heir of the British throne.",
31+
prompt="List me the Chioggia typical dishes",
3232
config=graph_config
3333
)
3434

examples/openai/smart_scraper_openai.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# ************************************************
3131

3232
smart_scraper_graph = SmartScraperGraph(
33-
prompt="List me all the links in the page",
33+
prompt="List me all the projects with their description.",
3434
# also accepts a string with the already downloaded HTML code
3535
source="https://perinim.github.io/projects/",
3636
config=graph_config

0 commit comments

Comments
 (0)