anthropic_llms.py 6.45 KB
Newer Older
haileyschoelkopf's avatar
haileyschoelkopf committed
1
2
from lm_eval.api.model import LM
from lm_eval.api.registry import register_model
Jason Phang's avatar
Jason Phang committed
3
4
from tqdm import tqdm
import time
5
from lm_eval import utils
baberabb's avatar
baberabb committed
6
from typing import List, Any, Tuple
Jason Phang's avatar
Jason Phang committed
7

8
eval_logger = utils.eval_logger
Jason Phang's avatar
Jason Phang committed
9

lintangsutawika's avatar
lintangsutawika committed
10

lintangsutawika's avatar
lintangsutawika committed
11
def anthropic_completion(
12
    client,  #: anthropic.Anthropic,
baberabb's avatar
baberabb committed
13
14
15
16
17
    model: str,
    prompt: str,
    max_tokens_to_sample: int,
    temperature: float,
    stop: List[str],
baberabb's avatar
baberabb committed
18
    **kwargs: Any,
baberabb's avatar
baberabb committed
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
) -> str:
    """Wrapper function around the Anthropic completion API client with exponential back-off
    in case of RateLimitError.

    params:
        client: anthropic.Anthropic
            Anthropic API client
        model: str
            Anthropic model e.g. 'claude-instant-v1', 'claude-2'
        prompt: str
            Prompt to feed to the model
        max_tokens_to_sample: int
            Maximum number of tokens to sample from the model
        temperature: float
            Sampling temperature
        stop: List[str]
            List of stop sequences
        kwargs: Any
            Additional model_args to pass to the API client
Jason Phang's avatar
Jason Phang committed
38
    """
39
40
41
42
43
44
45
46
47

    try:
        import anthropic
    except ModuleNotFoundError:
        raise Exception(
            "attempted to use 'anthropic' LM type, but package `anthropic` is not installed. \
please install anthropic via `pip install lm-eval[anthropic]` or `pip install -e .[anthropic]`",
        )

baberabb's avatar
baberabb committed
48
    backoff_time: float = 3
Jason Phang's avatar
Jason Phang committed
49
50
    while True:
        try:
baberabb's avatar
baberabb committed
51
            response = client.completions.create(
Jason Phang's avatar
Jason Phang committed
52
53
54
55
56
57
58
                prompt=f"{anthropic.HUMAN_PROMPT} {prompt}{anthropic.AI_PROMPT}",
                model=model,
                # NOTE: Claude really likes to do CoT, and overly aggressive stop sequences
                #       (e.g. gsm8k's ":") may truncate a lot of the input.
                stop_sequences=[anthropic.HUMAN_PROMPT] + stop,
                max_tokens_to_sample=max_tokens_to_sample,
                temperature=temperature,
baberabb's avatar
baberabb committed
59
                **kwargs,
Jason Phang's avatar
Jason Phang committed
60
            )
baberabb's avatar
baberabb committed
61
62
63
64
65
            return response.completion
        except anthropic.RateLimitError as e:
            eval_logger.warning(
                f"RateLimitError occurred: {e.__cause__}\n Retrying in {backoff_time} seconds"
            )
Jason Phang's avatar
Jason Phang committed
66
67
68
69
            time.sleep(backoff_time)
            backoff_time *= 1.5


haileyschoelkopf's avatar
haileyschoelkopf committed
70
@register_model("anthropic")
lintangsutawika's avatar
lintangsutawika committed
71
class AnthropicLM(LM):
baberabb's avatar
baberabb committed
72
    REQ_CHUNK_SIZE = 20  # TODO: not used
Jason Phang's avatar
Jason Phang committed
73

baberabb's avatar
baberabb committed
74
75
    def __init__(
        self,
76
        batch_size: int = 1,
baberabb's avatar
baberabb committed
77
78
        model: str = "claude-2.0",
        max_tokens_to_sample: int = 256,
79
80
        temperature: float = 0,  # defaults to 1
        **kwargs,  # top_p, top_k, etc.
Ethan Smith's avatar
Ethan Smith committed
81
    ) -> None:
baberabb's avatar
baberabb committed
82
        """Anthropic API wrapper.
Jason Phang's avatar
Jason Phang committed
83
84

        :param model: str
baberabb's avatar
baberabb committed
85
            Anthropic model e.g. 'claude-instant-v1', 'claude-2'
baberabb's avatar
baberabb committed
86
87
88
89
90
91
        :param max_tokens_to_sample: int
            Maximum number of tokens to sample from the model
        :param temperature: float
            Sampling temperature
        :param kwargs: Any
            Additional model_args to pass to the API client
Jason Phang's avatar
Jason Phang committed
92
93
        """
        super().__init__()
lintangsutawika's avatar
lintangsutawika committed
94

95
96
97
98
99
100
101
102
        try:
            import anthropic
        except ModuleNotFoundError:
            raise Exception(
                "attempted to use 'anthropic' LM type, but package `anthropic` is not installed. \
please install anthropic via `pip install lm-eval[anthropic]` or `pip install -e .[anthropic]`",
            )

Jason Phang's avatar
Jason Phang committed
103
        self.model = model
baberabb's avatar
baberabb committed
104
        # defaults to os.environ.get("ANTHROPIC_API_KEY")
baberabb's avatar
baberabb committed
105
        self.client = anthropic.Anthropic()
baberabb's avatar
baberabb committed
106
107
108
        self.temperature = temperature
        self.max_tokens_to_sample = max_tokens_to_sample
        self.tokenizer = self.client.get_tokenizer()
baberabb's avatar
baberabb committed
109
        self.kwargs = kwargs
Jason Phang's avatar
Jason Phang committed
110
111
112

    @property
    def eot_token_id(self):
baberabb's avatar
baberabb committed
113
        # Not sure but anthropic.HUMAN_PROMPT ?
Jason Phang's avatar
Jason Phang committed
114
115
116
        raise NotImplementedError("No idea about anthropic tokenization.")

    @property
baberabb's avatar
baberabb committed
117
    def max_length(self) -> int:
Jason Phang's avatar
Jason Phang committed
118
119
120
        return 2048

    @property
baberabb's avatar
baberabb committed
121
    def max_gen_toks(self) -> int:
baberabb's avatar
baberabb committed
122
        return self.max_tokens_to_sample
Jason Phang's avatar
Jason Phang committed
123
124
125
126

    @property
    def batch_size(self):
        # Isn't used because we override _loglikelihood_tokens
baberabb's avatar
baberabb committed
127
        raise NotImplementedError("No support for logits.")
Jason Phang's avatar
Jason Phang committed
128
129
130
131

    @property
    def device(self):
        # Isn't used because we override _loglikelihood_tokens
baberabb's avatar
baberabb committed
132
        raise NotImplementedError("No support for logits.")
Jason Phang's avatar
Jason Phang committed
133

baberabb's avatar
baberabb committed
134
135
    def tok_encode(self, string: str) -> List[int]:
        return self.tokenizer.encode(string).ids
Jason Phang's avatar
Jason Phang committed
136

baberabb's avatar
baberabb committed
137
138
    def tok_decode(self, tokens: List[int]) -> str:
        return self.tokenizer.decode(tokens)
Jason Phang's avatar
Jason Phang committed
139

Ethan Smith's avatar
Ethan Smith committed
140
    def _loglikelihood_tokens(self, requests, disable_tqdm: bool = False):
Jason Phang's avatar
Jason Phang committed
141
142
        raise NotImplementedError("No support for logits.")

143
    def generate_until(self, requests) -> List[str]:
Jason Phang's avatar
Jason Phang committed
144
145
146
        if not requests:
            return []

baberabb's avatar
baberabb committed
147
        _requests: List[Tuple[str, dict]] = [req.args for req in requests]
haileyschoelkopf's avatar
haileyschoelkopf committed
148

Jason Phang's avatar
Jason Phang committed
149
        res = []
baberabb's avatar
baberabb committed
150
        for request in tqdm(_requests):
baberabb's avatar
baberabb committed
151
152
153
            try:
                inp = request[0]
                request_args = request[1]
154
155
156
157
                # generation_kwargs
                until = request_args.get("until")
                max_gen_toks = request_args.get("max_gen_toks", self.max_length)
                temperature = request_args.get("temperature", self.temperature)
baberabb's avatar
baberabb committed
158
159
160
161
                response = anthropic_completion(
                    client=self.client,
                    model=self.model,
                    prompt=inp,
162
163
                    max_tokens_to_sample=max_gen_toks,
                    temperature=temperature,  # TODO: implement non-greedy sampling for Anthropic
baberabb's avatar
baberabb committed
164
                    stop=until,  # type: ignore
baberabb's avatar
baberabb committed
165
166
167
168
                    **self.kwargs,
                )
                res.append(response)

169
                self.cache_hook.add_partial("generate_until", request, response)
baberabb's avatar
baberabb committed
170
            except anthropic.APIConnectionError as e:  # type: ignore # noqa: F821
baberabb's avatar
baberabb committed
171
172
                eval_logger.critical(f"Server unreachable: {e.__cause__}")
                break
baberabb's avatar
baberabb committed
173
            except anthropic.APIStatusError as e:  # type: ignore # noqa: F821
baberabb's avatar
baberabb committed
174
175
                eval_logger.critical(f"API error {e.status_code}: {e.message}")
                break
haileyschoelkopf's avatar
haileyschoelkopf committed
176

Jason Phang's avatar
Jason Phang committed
177
178
179
180
181
182
183
        return res

    def _model_call(self, inps):
        # Isn't used because we override _loglikelihood_tokens
        raise NotImplementedError()

    def _model_generate(self, context, max_length, eos_token_id):
184
        # Isn't used because we override generate_until
Jason Phang's avatar
Jason Phang committed
185
        raise NotImplementedError()
baberabb's avatar
baberabb committed
186
187
188
189
190
191

    def loglikelihood(self, requests):
        raise NotImplementedError("No support for logits.")

    def loglikelihood_rolling(self, requests):
        raise NotImplementedError("No support for logits.")