forked from sandboxdream/AI-Vtuber
-
Notifications
You must be signed in to change notification settings - Fork 457
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #664 from Ikaros-521/owner
智谱AI新增 应用 功能的对接;动态文案 前端新增文案组添加删除功能,新增LLM类型,可以指定动态文案选用的LLM
- Loading branch information
Showing
10 changed files
with
430 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,4 +70,5 @@ pygtrans | |
jieba | ||
gradio==4.16.0 | ||
TikTokLive | ||
azure-cognitiveservices-speech | ||
azure-cognitiveservices-speech | ||
pyjwt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
# import time | ||
# import jwt | ||
|
||
# def generate_token(apikey: str, exp_seconds: int): | ||
# try: | ||
# id, secret = apikey.split(".") | ||
# except Exception as e: | ||
# raise Exception("invalid apikey", e) | ||
|
||
# payload = { | ||
# "api_key": id, | ||
# "exp": int(round(time.time() * 1000)) + exp_seconds * 1000, | ||
# "timestamp": int(round(time.time() * 1000)), | ||
# } | ||
|
||
# tmp = jwt.JWT() | ||
|
||
# return tmp.encode( | ||
# payload, | ||
# secret, | ||
# alg="HS256", | ||
# optional_headers={"alg": "HS256", "sign_type": "SIGN"}, | ||
# ) | ||
|
||
# print(generate_token("25571a2d0af8583121c3248be7e89d29.AuIX3O5ktKuQVMtC", 30 * 24 * 3600)) | ||
|
||
import time | ||
import jwt # 确保这是 PyJWT 库 | ||
import requests | ||
from urllib.parse import urljoin | ||
|
||
def generate_token(apikey: str, exp_seconds: int): | ||
try: | ||
id, secret = apikey.split(".") | ||
except Exception as e: | ||
raise Exception("invalid apikey", e) | ||
|
||
payload = { | ||
"api_key": id, | ||
"exp": int(round(time.time())) + exp_seconds, # PyJWT中exp字段期望的是秒级的时间戳 | ||
"timestamp": int(round(time.time() * 1000)), # 如果需要毫秒级时间戳,可以保留这一行 | ||
} | ||
|
||
# 使用PyJWT编码payload | ||
token = jwt.encode( | ||
payload, | ||
secret, | ||
headers={"alg": "HS256", "sign_type": "SIGN"} | ||
) | ||
|
||
return token | ||
|
||
|
||
token = generate_token("", 30 * 24 * 3600) | ||
|
||
print(token) | ||
|
||
base_url = "https://open.bigmodel.cn" | ||
|
||
headers = { | ||
"Authorization": f"Bearer {token}", | ||
} | ||
|
||
url = urljoin(base_url, "/api/llm-application/open/application") | ||
|
||
data = { | ||
"page": 1, | ||
"size": 20 | ||
} | ||
|
||
# get请求 | ||
response = requests.get(url=url, data=data, headers=headers) | ||
|
||
print(response.json()) | ||
|
||
resp_json = response.json() | ||
|
||
tmp_content = "智谱应用列表:" | ||
|
||
app_id = None | ||
|
||
try: | ||
for data in resp_json["data"]["list"]: | ||
tmp_content += f"\n应用名:{data['name']},应用ID:{data['id']},知识库:{data['knowledge_ids']}" | ||
app_id = data['id'] | ||
|
||
print(tmp_content) | ||
except Exception as e: | ||
print(e) | ||
|
||
def get_resp(prompt): | ||
url = urljoin(base_url, f"/api/llm-application/open/model-api/{app_id}/invoke") | ||
data = { | ||
"prompt": [{"role": "user", "content": prompt}], | ||
"returnType": "json_string", | ||
# "knowledge_ids": [], | ||
# "document_ids": [] | ||
} | ||
|
||
response = requests.post(url=url, json=data, headers=headers) | ||
|
||
try: | ||
print(response.json()) | ||
|
||
resp_json = response.json() | ||
resp_content = resp_json["data"]["content"] | ||
|
||
print(resp_content) | ||
except Exception as e: | ||
print(e) | ||
|
||
get_resp("伊卡洛斯和妮姆芙的关系") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.