获取API KEY
通过下面地址生成调用API所需的KEY。
代码实现
import google.generativeai as genai
genai.configure(api_key="GOOGLE_API_KEY")
def chat_gemini(input):
model = genai.GenerativeModel('gemini-pro')
chat = model.start_chat(history=[])
response = chat.send_message(input, stream=True)
try:
for chunk in response:
print(chunk.text)
except Exception as e:
print(e)
使用
chat_gemini('What is the meaning of life?')
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。