Skip to content

v0.4.0 - Function calling, Semantic retriever, AQA, and more

Compare
Choose a tag to compare
@MarkDaoust MarkDaoust released this 04 Mar 17:12
· 184 commits to main since this release
69cb0ea

What's new

Features

  • Update notebook magics to work with Gemini by @markmcd in #109
  • Semantic retriever by @shilpakancharla in #168
  • Attributed question answering (genai.generate_answer) by @shilpakancharla in #169
  • Automatic function calling. by @MarkDaoust in #201
     model = genai.GenerativeModel(..., tools=[my_function])
     chat = model.start_chat(enable_automatic_function_calling=True)
    
  • Request options (timeouts, retry, ...) by @aidoskanapyanov in #204
    Model.generate_content(..., 
        request_options={'timeout': 100, 'retry': google.api_core.retry.Retry()})
    
  • Permissions module by @mayureshagashe2105 in #205

More updates

New Contributors

Full Changelog: v0.3.2...v0.4.0