Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 348 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 348 Bytes

What is this

LLamaIndex's custom LLM, a Proxy-enabled version of Gemini!

How to use

pip install git+https://github.com/HawkClaws/proxy_gemini.git

from proxy_gemini import ProxyGemini

llm = ProxyGemini(
    api_key="your api_key",
    proxy_url="http://hogehoge",
)

res = llm.complete("HOGE HUGA world")
print(res.text)