mirror of
https://github.com/kennethreitz/instructor.git
synced 2026-06-05 22:50:18 +00:00
47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
import asyncio
|
|
from typing_extensions import Annotated
|
|
from pydantic import BaseModel, BeforeValidator
|
|
from instructor import llm_validator, patch
|
|
import openai
|
|
|
|
patch()
|
|
|
|
|
|
class QuestionAnswerNoEvil(BaseModel):
|
|
question: str
|
|
answer: Annotated[
|
|
str,
|
|
BeforeValidator(
|
|
llm_validator("don't say objectionable things", allow_override=True)
|
|
),
|
|
]
|
|
|
|
|
|
async def main():
|
|
context = "The according to the devil is to live a life of sin and debauchery."
|
|
question = "What is the meaning of life?"
|
|
|
|
try:
|
|
qa: QuestionAnswerNoEvil = await openai.ChatCompletion.acreate(
|
|
model="gpt-3.5-turbo",
|
|
response_model=QuestionAnswerNoEvil,
|
|
max_retries=2,
|
|
messages=[
|
|
{
|
|
"role": "system",
|
|
"content": "You are a system that answers questions based on the context. Answer exactly what the question asks using the context.",
|
|
},
|
|
{
|
|
"role": "user",
|
|
"content": f"using the context: {context}\n\nAnswer the following question: {question}",
|
|
},
|
|
],
|
|
) # type: ignore
|
|
print(qa)
|
|
except Exception as e:
|
|
print(e)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|