-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a LanguageModel implementation that uses OpenAI api
PiperOrigin-RevId: 588395702 Change-Id: Iabce697a14c77168eba608769eeedaf69c408e64
- Loading branch information
1 parent
941ab4f
commit 6806314
Showing
2 changed files
with
116 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
# Copyright 2023 DeepMind Technologies Limited. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
|
||
"""Language Model that uses OpenAI's GPT models.""" | ||
|
||
from collections.abc import Collection, Sequence | ||
from concordia.language_model import language_model | ||
from concordia.utils import measurements as measurements_lib | ||
import openai | ||
from typing_extensions import override | ||
|
||
_MAX_MULTIPLE_CHOICE_ATTEMPTS = 3 | ||
|
||
|
||
class GptLanguageModel(language_model.LanguageModel): | ||
"""Language Model that uses OpenAI GPT models.""" | ||
|
||
def __init__( | ||
self, | ||
api_key: str, | ||
model_name: str, | ||
measurements: measurements_lib.Measurements | None = None, | ||
channel: str = language_model.DEFAULT_STATS_CHANNEL, | ||
): | ||
"""Initializes the instance. | ||
Args: | ||
api_key: The API key to use when accessing the OpenAI API. | ||
model_name: The language model to use. For more details, see | ||
https://platform.openai.com/docs/guides/text-generation/which-model-should-i-use. | ||
measurements: The measurements object to log usage statistics to. | ||
channel: The channel to write the statistics to. | ||
""" | ||
self._api_key = api_key | ||
self._model_name = model_name | ||
self._measurements = measurements | ||
self._channel = channel | ||
|
||
@override | ||
def sample_text( | ||
self, | ||
prompt: str, | ||
*, | ||
max_tokens: int = language_model.DEFAULT_MAX_TOKENS, | ||
max_characters: int = language_model.DEFAULT_MAX_CHARACTERS, | ||
terminators: Collection[str] = language_model.DEFAULT_TERMINATORS, | ||
temperature: float = language_model.DEFAULT_TEMPERATURE, | ||
timeout: float = language_model.DEFAULT_TIMEOUT_SECONDS, | ||
seed: int | None = None, | ||
) -> str: | ||
messages = [{'role': 'user', 'content': prompt}] | ||
response = openai.ChatCompletion.create( | ||
api_key=self._api_key, | ||
model=self._model_name, | ||
messages=messages, | ||
temperature=temperature, | ||
max_tokens=max_tokens, | ||
timeout=timeout, | ||
request_timeout=timeout, | ||
stop=terminators, | ||
seed=seed, | ||
) | ||
if self._measurements is not None: | ||
self._measurements.publish_datum( | ||
self._channel, | ||
{'raw_text_length': len(response.choices[0].message.content)}, | ||
) | ||
return response.choices[0].message.content | ||
|
||
@override | ||
def sample_choice( | ||
self, | ||
prompt: str, | ||
responses: Sequence[str], | ||
*, | ||
seed: int | None = None, | ||
) -> tuple[int, str, dict[str, float]]: | ||
max_characters = len(max(responses, key=len)) | ||
|
||
attempts = 1 | ||
for _ in range(_MAX_MULTIPLE_CHOICE_ATTEMPTS): | ||
sample = self.sample_text( | ||
prompt, | ||
max_characters=max_characters, | ||
temperature=0.0, | ||
seed=seed, | ||
) | ||
try: | ||
idx = responses.index(sample) | ||
except ValueError: | ||
attempts += 1 | ||
continue | ||
else: | ||
if self._measurements is not None: | ||
self._measurements.publish_datum( | ||
self._channel, {'choices_calls': attempts} | ||
) | ||
debug = {} | ||
return idx, responses[idx], debug | ||
|
||
raise language_model.InvalidResponseError( | ||
'Too many multiple choice attempts.' | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,6 +58,7 @@ | |
'ipython', | ||
'matplotlib', | ||
'numpy', | ||
'openai', | ||
'pandas==1.5.3', | ||
'python-dateutil', | ||
'reactivex', | ||
|