Google Gemini Pro

目前适配的模型为Google Gemini Pro 1.0的betav1版本,该版本获取API-Key之后可免费使用,每分钟限制请求60次。

暂未适配Google的其他模型,如有需要可以在我们的Github Issue发起适配申请。

import Agently
agent = (
    Agently.create_agent()
        .set_settings("current_model", "Google")
        .set_settings("model.Google.auth", { "api_key": "<Your-API-Key>" })
        # 如果您需要使用本地代理,确定本地代理的host和port后,可以按如下方式设置
        # .set_settings("proxy", "http://127.0.0.1:7890")
)