Skip to content

v0.1.12

Compare
Choose a tag to compare
@SimFG SimFG released this 17 Apr 08:08
· 223 commits to main since this release

What's Changed

🎉 Introduction to new functions of GPTCache

  1. The llm request can customize topk search parameters
openai.ChatCompletion.create(
    model="gpt-3.5-turbo",
    messages=[
        {"role": "user", "content": question},
    ],
    top_k=10,
)

Full Changelog: 0.1.11...0.1.12