mirror of
https://github.com/jehna/humanify.git
synced 2026-04-28 01:55:56 +03:00
[GH-ISSUE #11] Add a support for Gemini 1.5 Pro #8
Labels
No labels
bug
enhancement
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/humanify#8
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mertushka on GitHub (Apr 1, 2024).
Original GitHub issue: https://github.com/jehna/humanify/issues/11
How about adding support for Google's Gemini 1.5 Pro Model which offers 1,048,576 tokens for free?
https://aistudio.google.com/
@0xdevalias commented on GitHub (Apr 1, 2024):
AIStudio isn't accessible via API as far as I know; and they've only recently started giving API access to a limited set of people applying; limited to a single Google Cloud project ID.
So not really widely available to be integrated at this stage afaik.
@mertushka commented on GitHub (Aug 28, 2024):
Any heads up? @0xdevalias @jehna
@0xdevalias commented on GitHub (Aug 28, 2024):
These days I would probably suggest widening the scope of this issue to include multiple Gemini based models, as there are things like Gemini 1.5 Flash and similar now too:
If this were a python based project, I would suggest that there might be benefit in implementing an abstraction library such as
litellm(which is whataideruses) to ease integrating multiple new API's/model providers, but not sure if there is a well maintained equivalent for JS/TS:@jehna commented on GitHub (Aug 28, 2024):
I took a quick look and it seems that gemini does support forcing json output, which is required for humanify to work correctly. This should be straightforward to implement, as Google offers free tokens for CI testing and there's an officisl node.js package available.