llama-index llms zhipuai integration
Project description
LlamaIndex Llms Integration: ZhipuAI
Installation
%pip install llama-index-llms-zhipuai
!pip install llama-index
Basic usage
# Import ZhipuAI
from llama_index.llms.zhipuai import ZhipuAI
# Set your API key
api_key = "Your API KEY"
# Call complete function
response = ZhipuAI(model="glm-4", api_key=api_key).complete("who are you")
print(response)
# Output
# I am an AI assistant named ZhiPuQingYan(智谱清言), you can call me Xiaozhi🤖, which is developed based on the language model jointly trained by Tsinghua University KEG Lab and Zhipu AI Company in 2023. My job is to provide appropriate answers and support to users' questions and requests.
# Call complete with stop
response = ZhipuAI(model="glm-4", api_key=api_key).complete(
prompt="who are you", stop=["Zhipu"]
)
print(response)
# Output
# I am an AI assistant named ZhiPuQingYan(智谱清言), you can call me Xiaozhi🤖, which is developed based on the language model jointly trained by Tsinghua University KEG Lab and Zhipu
# Call chat with a list of messages
from llama_index.core.llms import ChatMessage
messages = [
ChatMessage(role="user", content="who are you"),
]
response = ZhipuAI(model="glm-4", api_key=api_key).chat(messages)
print(response)
# Output
# assistant: I am an AI assistant named ZhiPuQingYan(智谱清言), you can call me Xiaozhi🤖, which is developed based on the language model jointly trained by Tsinghua University KEG Lab and Zhipu AI Company in 2023. My job is to provide appropriate answers and support to users' questions and requests.
Streaming: Using stream endpoint
from llama_index.llms.zhipuai import ZhipuAI
llm = ZhipuAI(model="glm-4", api_key=api_key)
# Using stream_complete endpoint
response = llm.stream_complete("who are you")
for r in response:
print(r.delta, end="")
# Using stream_chat endpoint
messages = [
ChatMessage(role="user", content="who are you"),
]
response = llm.stream_chat(messages)
for r in response:
print(r.delta, end="")
Function Calling
from llama_index.llms.zhipuai import ZhipuAI
llm = ZhipuAI(model="glm-4", api_key="YOUR API KEY")
tools = [
{
"type": "function",
"function": {
"name": "query_weather",
"description": "Query the weather of the city provided by user",
"parameters": {
"type": "object",
"properties": {
"city": {
"type": "string",
"description": "City to query",
},
},
"required": ["city"],
},
},
}
]
response = llm.complete(
"help me to find the weather in Shanghai",
tools=tools,
tool_choice="auto",
)
print(llm.get_tool_calls_from_response(response))
# Output
# [ToolSelection(tool_id='call_9097928240216277928', tool_name='query_weather', tool_kwargs={'city': 'Shanghai'})]
ZhipuAI Documentation
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file llama_index_llms_zhipuai-0.2.1.tar.gz.
File metadata
- Download URL: llama_index_llms_zhipuai-0.2.1.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/6.5.0-1025-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8d87e4e22089e4990613c0ef390b24eae7de03f32763470c0d3337b142e2c5ba
|
|
| MD5 |
54ac82f548132b93e0691bfbbc0c36ee
|
|
| BLAKE2b-256 |
0d2c8e6338330965241b599afedc1409004a0da8f2ede6a7b83c6095c4ebf1fd
|
File details
Details for the file llama_index_llms_zhipuai-0.2.1-py3-none-any.whl.
File metadata
- Download URL: llama_index_llms_zhipuai-0.2.1-py3-none-any.whl
- Upload date:
- Size: 5.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.3 CPython/3.10.12 Linux/6.5.0-1025-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f8794eb2a7ce1cbab8425c6042ff6afe13d954f55fce29d68449aaa5116c3f10
|
|
| MD5 |
706642fd406d6ee376c107b573f1f8f1
|
|
| BLAKE2b-256 |
3927887fbb4b05f72110f15332faaf77453eedca23a56684bff227ba4b9e62f5
|