File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1+ from .anthropic import Claude
12from .azure_openai import AzureOpenAI
23from .bedrock import *
34from .cache_utils import *
1314from .pyserini import *
1415from .sbert import *
1516from .sentence_vectorizer import *
16- from .anthropic import Claude
Original file line number Diff line number Diff line change 1+ import logging
12import os
3+ from typing import Any, Optional
4+
25import backoff
3- import json
4- from typing import Optional, Any
56
67from dsp.modules.lm import LM
7- import logging
88
99try:
1010 import anthropic
@@ -41,7 +41,7 @@ def __init__(
4141 model: str = "claude-instant-1.2",
4242 api_key: Optional[str] = None,
4343 api_base: Optional[str] = None,
44- **kwargs
44+ **kwargs,
4545 ):
4646 super().__init__(model)
4747
You can’t perform that action at this time.
0 commit comments