Skip to content

Commit

Permalink
Clean leftover
Browse files Browse the repository at this point in the history
  • Loading branch information
nivcertora committed Jan 8, 2025
1 parent 7ed98f5 commit 8f4d4bc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion Quorum/checks/new_listing.py
Original file line number Diff line number Diff line change
@@ -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


Expand Down
6 changes: 3 additions & 3 deletions Quorum/llm/chains/cached_llm.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
)
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20250108.111754.860989
20250108.112300.169636

0 comments on commit 8f4d4bc

Please sign in to comment.