We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73e4e47 commit fa3afa5Copy full SHA for fa3afa5
src/connection_manager.py
@@ -20,6 +20,7 @@
20
from src.connections.ethereum_connection import EthereumConnection
21
from src.connections.together_connection import TogetherAIConnection
22
from src.connections.evm_connection import EVMConnection
23
+from src.connections.perplexity_connection import PerplexityConnection
24
25
logger = logging.getLogger("connection_manager")
26
@@ -70,6 +71,8 @@ def _class_name_to_type(class_name: str) -> Type[BaseConnection]:
70
71
return TogetherAIConnection
72
elif class_name == "evm":
73
return EVMConnection
74
+ elif class_name == "perplexity":
75
+ return PerplexityConnection
76
return None
77
78
def _register_connection(self, config_dic: Dict[str, Any]) -> None:
0 commit comments