This commit is contained in:
guanjihuan 2025-04-08 10:09:37 +08:00
parent c35688a49e
commit b0e29a164a
3 changed files with 2 additions and 29 deletions

View File

@ -1,7 +1,7 @@
[metadata] [metadata]
# replace with your username: # replace with your username:
name = guan name = guan
version = 0.1.175 version = 0.1.176
author = guanjihuan author = guanjihuan
author_email = guanjihuan@163.com author_email = guanjihuan@163.com
description = An open source python package description = An open source python package

View File

@ -1,6 +1,6 @@
Metadata-Version: 2.4 Metadata-Version: 2.4
Name: guan Name: guan
Version: 0.1.175 Version: 0.1.176
Summary: An open source python package Summary: An open source python package
Home-page: https://py.guanjihuan.com Home-page: https://py.guanjihuan.com
Author: guanjihuan Author: guanjihuan

View File

@ -59,33 +59,6 @@ def auto_chat_with_guide(prompt='你好', guide_message='回答字数少于30
print('机器人 2: ') print('机器人 2: ')
response0 = guan.chat(prompt=response1+guide_message, model=model, stream=stream) response0 = guan.chat(prompt=response1+guide_message, model=model, stream=stream)
# 在云端服务器上运行函数(需要函数是独立可运行的代码)
def run(function_name, *args, **kwargs):
import requests
import guan
url = "http://run.guanjihuan.com/run_function"
function_source = guan.get_source(function_name)
data = {
"function_name": function_name.__name__,
"function_source": function_source,
'args': str(args),
'kwargs': str(kwargs),
}
return_data = None
try:
response = requests.post(url, json=data)
if response.status_code == 200:
result = response.json()
print_data = result['print_data']
print(print_data, end='')
encoded_return_data = result['encoded_return_data']
import base64
import pickle
return_data = pickle.loads(base64.b64decode(encoded_return_data))
except:
pass
return return_data
# CPU性能测试十亿次循环的浮点加法运算的时间约30秒左右 # CPU性能测试十亿次循环的浮点加法运算的时间约30秒左右
def cpu_test_with_addition(print_show=1): def cpu_test_with_addition(print_show=1):
import time import time