-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathserch_graph_scehma.py
More file actions
49 lines (35 loc) · 985 Bytes
/
serch_graph_scehma.py
File metadata and controls
49 lines (35 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
"""
Example of Search Graph
"""
import os
from typing import List
from dotenv import load_dotenv
from pydantic import BaseModel, Field
from scrapegraphai.graphs import SearchGraph
load_dotenv()
# ************************************************
# Define the configuration for the graph
# ************************************************
class CeoName(BaseModel):
ceo_name: str = Field(description="The name and surname of the ceo")
class Ceos(BaseModel):
names: List[CeoName]
openai_key = os.getenv("OPENAI_APIKEY")
graph_config = {
"llm": {
"api_key": openai_key,
"model": "openai/gpt-4o",
},
"max_results": 2,
"verbose": True,
}
# ************************************************
# Create the SearchGraph instance and run it
# ************************************************
search_graph = SearchGraph(
prompt="Who is the ceo of Appke?",
schema=Ceos,
config=graph_config,
)
result = search_graph.run()
print(result)