Skip to content

Commit de91d6b

Browse files
committed
Add application that searches for people to connect with.
1 parent e7b1ed8 commit de91d6b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/pydantic_models/config_models.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,15 @@ class SearchConfig(BaseModel):
7575
location_blacklist: Optional[List[str]] = []
7676

7777

78+
class ConnectionSearcherConfig(BaseModel):
79+
main_search_words: List[str] = [
80+
"Open Networker",
81+
"LION",
82+
"NO IDK",
83+
]
84+
additional_search_words: List[str] = []
85+
86+
7887
class Secrets(BaseModel):
7988
llm_api_key: str
8089
llm_proxy: str

0 commit comments

Comments
 (0)