97e91a83f3
Ruff / Ruff (push) Has been cancelled
Test / Core Tests (push) Has been cancelled
Test / Offline Coverage Tests (Python 3.10) (push) Has been cancelled
Test / Offline Coverage Tests (Python 3.11) (push) Has been cancelled
Test / Offline Coverage Tests (Python 3.12) (push) Has been cancelled
Test / Offline Coverage Tests (Python 3.13) (push) Has been cancelled
Test / Offline Coverage Tests (Python 3.9) (push) Has been cancelled
Test / Full Coverage (Python 3.11) (push) Has been cancelled
Test / Core Provider Tests (OpenAI) (push) Has been cancelled
Test / Core Provider Tests (Anthropic) (push) Has been cancelled
Test / Core Provider Tests (Google) (push) Has been cancelled
Test / Core Provider Tests (Other) (push) Has been cancelled
Test / Anthropic Tests (push) Has been cancelled
Test / Gemini Tests (push) Has been cancelled
Test / Google GenAI Tests (push) Has been cancelled
Test / Vertex AI Tests (push) Has been cancelled
Test / OpenAI Tests (push) Has been cancelled
Test / Writer Tests (push) Has been cancelled
Test / Auto Client Tests (push) Has been cancelled
ty / type-check (push) Has been cancelled
47 lines
1.2 KiB
Python
47 lines
1.2 KiB
Python
from typing import Annotated
|
|
from pydantic import BaseModel, ValidationError, ValidationInfo, AfterValidator
|
|
from openai import OpenAI
|
|
import instructor
|
|
|
|
client = instructor.from_openai(OpenAI())
|
|
|
|
|
|
def citation_exists(v: str, info: ValidationInfo):
|
|
context = info.context
|
|
if context:
|
|
context = context.get("text_chunk")
|
|
if v not in context:
|
|
raise ValueError(f"Citation `{v}` not found in text")
|
|
return v
|
|
|
|
|
|
Citation = Annotated[str, AfterValidator(citation_exists)]
|
|
|
|
|
|
class AnswerWithCitation(BaseModel):
|
|
answer: str
|
|
citation: Citation
|
|
|
|
|
|
try:
|
|
q = "Are blue berries high in protein?"
|
|
text_chunk = """
|
|
Blueberries are a good source of vitamin K.
|
|
They also contain vitamin C, fibre, manganese and other antioxidants (notably anthocyanins).
|
|
"""
|
|
|
|
resp = client.chat.completions.create(
|
|
model="gpt-3.5-turbo",
|
|
response_model=AnswerWithCitation,
|
|
messages=[
|
|
{
|
|
"role": "user",
|
|
"content": f"Answer the question `{q}` using the text chunk\n`{text_chunk}`",
|
|
},
|
|
],
|
|
validation_context={"text_chunk": text_chunk},
|
|
) # type: ignore
|
|
print(resp.model_dump_json(indent=2))
|
|
except ValidationError as e:
|
|
print(e)
|