v3.1.1 #932
assafelovic
announced in
Announcements
v3.1.1
#932
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We've completely refactored almost the entire codebase (over 55 files), to improve overall modularity and simplification of structure to ensure less bugs, and more easy development. In addition, we've finally added image support (!!!). We've also improve the GPT Researcher PIP package which can now return source results, scraped images, research report sections and more! Lastly, thanks to the amazing community you can check out below much more improvements. Thank you to everyone!
Updated Demo with images
gptr-demo-final.mp4
New PIP functions
from gpt_researcher import GPTResearcher
import asyncio
async def get_report(query: str, report_type: str):
researcher = GPTResearcher(query, report_type)
research_result = await researcher.conduct_research()
report = await researcher.write_report()
if name == "main":
query = "what team may win the NBA finals?"
report_type = "research_report"
What's Changed
temperature
andmax_tokens
increate_chat_completion
by @lundha in Update docstring to reflect default values fortemperature
andmax_tokens
increate_chat_completion
#899New Contributors
temperature
andmax_tokens
increate_chat_completion
#899Full Changelog: v.3.1.0...v3.1.1
This discussion was created from the release v3.1.1.
Beta Was this translation helpful? Give feedback.
All reactions