You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/langchain/llms/openai.py

122 lines
4.1 KiB
Python

"""Wrapper around OpenAI APIs."""
import os
from typing import Any, Dict, List, Mapping, Optional
from pydantic import BaseModel, Extra, root_validator
from langchain.llms.base import LLM, CompletionOutput
def _get_completion_logprobs(txt: str, tokens : List[str], token_logprobs: List[float]) -> List[float]:
"""Get the log probabilities corresponding to the tokens generated."""
N = len(txt)
_total = 0
results = []
for i in range(len(tokens)):
if _total >= N:
break
_total += len(tokens[i])
results.append(token_logprobs[i])
return results
class OpenAI(BaseModel, LLM):
"""Wrapper around OpenAI large language models.
To use, you should have the ``openai`` python package installed, and the
environment variable ``OPENAI_API_KEY`` set with your API key.
Example:
.. code-block:: python
from langchain import OpenAI
openai = OpenAI(model="text-davinci-002")
"""
client: Any #: :meta private:
model_name: str = "text-davinci-002"
"""Model name to use."""
temperature: float = 0.7
"""What sampling temperature to use."""
max_tokens: int = 256
"""The maximum number of tokens to generate in the completion."""
top_p: int = 1
"""Total probability mass of tokens to consider at each step."""
frequency_penalty: int = 0
"""Penalizes repeated tokens according to frequency."""
presence_penalty: int = 0
"""Penalizes repeated tokens."""
n: int = 1
"""How many completions to generate for each prompt."""
best_of: int = 1
"""Generates best_of completions server-side and returns the "best"."""
logprobs: Optional[int] = 0
"""Returns the log probabilities of the generated tokens."""
class Config:
"""Configuration for this pydantic object."""
extra = Extra.forbid
@root_validator()
def validate_environment(cls, values: Dict) -> Dict:
"""Validate that api key and python package exists in environment."""
if "OPENAI_API_KEY" not in os.environ:
raise ValueError(
"Did not find OpenAI API key, please add an environment variable"
" `OPENAI_API_KEY` which contains it."
)
try:
import openai
values["client"] = openai.Completion
except ImportError:
raise ValueError(
"Could not import openai python package. "
"Please it install it with `pip install openai`."
)
return values
@property
def _default_params(self) -> Mapping[str, Any]:
"""Get the default parameters for calling OpenAI API."""
return {
"temperature": self.temperature,
"max_tokens": self.max_tokens,
"top_p": self.top_p,
"frequency_penalty": self.frequency_penalty,
"presence_penalty": self.presence_penalty,
"n": self.n,
"best_of": self.best_of,
"logprobs": self.logprobs,
}
def generate(self, prompt: str, stop: Optional[List[str]] = None) -> List[CompletionOutput]:
"""Call out to OpenAI's create endpoint.
Args:
prompt: The prompt to pass into the model.
stop: Optional list of stop words to use when generating.
Returns:
The string generated by the model.
Example:
.. code-block:: python
response = openai("Tell me a joke.")
"""
response = self.client.create(
model=self.model_name, prompt=prompt, stop=stop, **self._default_params
)
results = []
for choice in response["choices"]:
text = choice["text"]
truncated_logprobs = None
if choice["logprobs"] is not None:
tokens = choice["logprobs"]["tokens"]
token_logprobs = choice["logprobs"]["token_logprobs"]
truncated_logprobs = _get_completion_logprobs(choice["text"], tokens, token_logprobs)
results.append(CompletionOutput(text=text, logprobs=truncated_logprobs))
return results