-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cross encoder reranker in search query (#202)
* cross encoder reranker * update reranker * add openai reranker * format * mypy * update * updates * MyPy typing * bump version
- Loading branch information
1 parent
544f9e3
commit ceb60a3
Showing
8 changed files
with
446 additions
and
191 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,113 @@ | ||
""" | ||
Copyright 2024, Zep Software, Inc. | ||
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 | ||
http://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. | ||
""" | ||
|
||
import asyncio | ||
import logging | ||
from typing import Any | ||
|
||
import openai | ||
from openai import AsyncOpenAI | ||
from pydantic import BaseModel | ||
|
||
from ..llm_client import LLMConfig, RateLimitError | ||
from ..prompts import Message | ||
from .client import CrossEncoderClient | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
DEFAULT_MODEL = 'gpt-4o-mini' | ||
|
||
|
||
class BooleanClassifier(BaseModel): | ||
isTrue: bool | ||
|
||
|
||
class OpenAIRerankerClient(CrossEncoderClient): | ||
def __init__(self, config: LLMConfig | None = None): | ||
""" | ||
Initialize the OpenAIClient with the provided configuration, cache setting, and client. | ||
Args: | ||
config (LLMConfig | None): The configuration for the LLM client, including API key, model, base URL, temperature, and max tokens. | ||
cache (bool): Whether to use caching for responses. Defaults to False. | ||
client (Any | None): An optional async client instance to use. If not provided, a new AsyncOpenAI client is created. | ||
""" | ||
if config is None: | ||
config = LLMConfig() | ||
|
||
self.config = config | ||
self.client = AsyncOpenAI(api_key=config.api_key, base_url=config.base_url) | ||
|
||
async def rank(self, query: str, passages: list[str]) -> list[tuple[str, float]]: | ||
openai_messages_list: Any = [ | ||
[ | ||
Message( | ||
role='system', | ||
content='You are an expert tasked with determining whether the passage is relevant to the query', | ||
), | ||
Message( | ||
role='user', | ||
content=f""" | ||
Respond with "True" if PASSAGE is relevant to QUERY and "False" otherwise. | ||
<PASSAGE> | ||
{query} | ||
</PASSAGE> | ||
{passage} | ||
<QUERY> | ||
</QUERY> | ||
""", | ||
), | ||
] | ||
for passage in passages | ||
] | ||
try: | ||
responses = await asyncio.gather( | ||
*[ | ||
self.client.chat.completions.create( | ||
model=DEFAULT_MODEL, | ||
messages=openai_messages, | ||
temperature=0, | ||
max_tokens=1, | ||
logit_bias={'6432': 1, '7983': 1}, | ||
logprobs=True, | ||
top_logprobs=2, | ||
) | ||
for openai_messages in openai_messages_list | ||
] | ||
) | ||
|
||
responses_top_logprobs = [ | ||
response.choices[0].logprobs.content[0].top_logprobs | ||
if response.choices[0].logprobs is not None | ||
and response.choices[0].logprobs.content is not None | ||
else [] | ||
for response in responses | ||
] | ||
scores: list[float] = [] | ||
for top_logprobs in responses_top_logprobs: | ||
for logprob in top_logprobs: | ||
if bool(logprob.token): | ||
scores.append(logprob.logprob) | ||
|
||
results = [(passage, score) for passage, score in zip(passages, scores)] | ||
results.sort(reverse=True, key=lambda x: x[1]) | ||
return results | ||
except openai.RateLimitError as e: | ||
raise RateLimitError from e | ||
except Exception as e: | ||
logger.error(f'Error in generating LLM response: {e}') | ||
raise |
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
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
Oops, something went wrong.