diff --git a/Quorum/checks/new_listing.py b/Quorum/checks/new_listing.py index faa7e8a..0e55650 100644 --- a/Quorum/checks/new_listing.py +++ b/Quorum/checks/new_listing.py @@ -1,6 +1,5 @@ from Quorum.checks.check import Check import Quorum.utils.pretty_printer as pp -import Quorum.utils.config as config from Quorum.llm.chains.first_deposit_chain import FirstDepositChain, ListingArray diff --git a/Quorum/llm/chains/cached_llm.py b/Quorum/llm/chains/cached_llm.py index f2458c7..e0b74a9 100644 --- a/Quorum/llm/chains/cached_llm.py +++ b/Quorum/llm/chains/cached_llm.py @@ -1,6 +1,6 @@ from pathlib import Path -from Quorum.utils.config import ANTHROPIC_MODEL, ANTHROPIC_API_KEY +from Quorum.utils.quorum_configuration import QuorumConfiguration from langchain_anthropic import ChatAnthropic from langchain_community.cache import SQLiteCache @@ -26,9 +26,9 @@ def __init__(self): #Initialize the Anthropic LLM with the specified model and configurations self.llm = ChatAnthropic( - model=ANTHROPIC_MODEL, + model=QuorumConfiguration().anthropic_model, cache=True, max_retries=3, temperature=0.0, - api_key=ANTHROPIC_API_KEY + api_key=QuorumConfiguration().anthropic_api_key ) diff --git a/version b/version index d209186..9cacd03 100644 --- a/version +++ b/version @@ -1 +1 @@ -20250108.111754.860989 +20250108.112300.169636