Skip to content

Commit 6f0b9d8

Browse files
committed
update examples
1 parent c234c23 commit 6f0b9d8

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

examples/openai/script_generator_openai.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"api_key": os.getenv("OPENAI_API_KEY"),
2121
"model": "openai/gpt-4o",
2222
},
23+
"library": "beautifulsoup",
2324
"verbose": True,
2425
"headless": False,
2526
}

examples/openai/script_generator_schema_openai.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class Projects(BaseModel):
3232
graph_config = {
3333
"llm": {
3434
"api_key": openai_key,
35-
"model": "openai/gpt-3.5-turbo",
35+
"model": "openai/gpt-4o"
3636
},
3737
"library": "beautifulsoup",
3838
"verbose": True,

examples/openai/search_graph_schema_openai.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Dishes(BaseModel):
3131
graph_config = {
3232
"llm": {
3333
"api_key": openai_key,
34-
"model": "openai/gpt-3.5-turbo",
34+
"model": "openai/gpt-4o"
3535
},
3636
"max_results": 2,
3737
"verbose": True,

0 commit comments

Comments
 (0)