smartpi 1.1.4__py3-none-any.whl → 1.1.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- smartpi/__init__.py +8 -0
- smartpi/__init__.pyc +0 -0
- smartpi/_gui.py +66 -0
- smartpi/_gui.pyc +0 -0
- smartpi/ai_asr.py +1037 -0
- smartpi/ai_asr.pyc +0 -0
- smartpi/ai_llm.py +934 -0
- smartpi/ai_llm.pyc +0 -0
- smartpi/ai_tts.py +938 -0
- smartpi/ai_tts.pyc +0 -0
- smartpi/ai_vad.py +83 -0
- smartpi/ai_vad.pyc +0 -0
- smartpi/audio.py +125 -0
- smartpi/audio.pyc +0 -0
- smartpi/base_driver.py +618 -0
- smartpi/base_driver.pyc +0 -0
- smartpi/camera.py +84 -0
- smartpi/camera.pyc +0 -0
- smartpi/color_sensor.py +18 -0
- smartpi/color_sensor.pyc +0 -0
- smartpi/cw2015.py +179 -0
- smartpi/cw2015.pyc +0 -0
- smartpi/flash.py +130 -0
- smartpi/flash.pyc +0 -0
- smartpi/humidity.py +20 -0
- smartpi/humidity.pyc +0 -0
- smartpi/led.py +19 -0
- smartpi/led.pyc +0 -0
- smartpi/light_sensor.py +72 -0
- smartpi/light_sensor.pyc +0 -0
- smartpi/local_model.py +432 -0
- smartpi/local_model.pyc +0 -0
- smartpi/mcp_client.py +100 -0
- smartpi/mcp_client.pyc +0 -0
- smartpi/mcp_fastmcp.py +322 -0
- smartpi/mcp_fastmcp.pyc +0 -0
- smartpi/mcp_intent_recognizer.py +408 -0
- smartpi/mcp_intent_recognizer.pyc +0 -0
- smartpi/models/__init__.py +0 -0
- smartpi/models/__init__.pyc +0 -0
- smartpi/models/snakers4_silero-vad/__init__.py +0 -0
- smartpi/models/snakers4_silero-vad/__init__.pyc +0 -0
- smartpi/models/snakers4_silero-vad/hubconf.py +56 -0
- smartpi/models/snakers4_silero-vad/hubconf.pyc +0 -0
- smartpi/motor.py +177 -0
- smartpi/motor.pyc +0 -0
- smartpi/move.py +218 -0
- smartpi/move.pyc +0 -0
- smartpi/onnx_hand_workflow.py +201 -0
- smartpi/onnx_hand_workflow.pyc +0 -0
- smartpi/onnx_image_workflow.py +176 -0
- smartpi/onnx_image_workflow.pyc +0 -0
- smartpi/onnx_pose_workflow.py +482 -0
- smartpi/onnx_pose_workflow.pyc +0 -0
- smartpi/onnx_text_workflow.py +173 -0
- smartpi/onnx_text_workflow.pyc +0 -0
- smartpi/onnx_voice_workflow.py +437 -0
- smartpi/onnx_voice_workflow.pyc +0 -0
- smartpi/posemodel/__init__.py +0 -0
- smartpi/posemodel/__init__.pyc +0 -0
- smartpi/posenet_utils.py +222 -0
- smartpi/posenet_utils.pyc +0 -0
- smartpi/rknn_hand_workflow.py +245 -0
- smartpi/rknn_hand_workflow.pyc +0 -0
- smartpi/rknn_image_workflow.py +405 -0
- smartpi/rknn_image_workflow.pyc +0 -0
- smartpi/rknn_pose_workflow.py +592 -0
- smartpi/rknn_pose_workflow.pyc +0 -0
- smartpi/rknn_text_workflow.py +240 -0
- smartpi/rknn_text_workflow.pyc +0 -0
- smartpi/rknn_voice_workflow.py +394 -0
- smartpi/rknn_voice_workflow.pyc +0 -0
- smartpi/servo.py +178 -0
- smartpi/servo.pyc +0 -0
- smartpi/temperature.py +18 -0
- smartpi/temperature.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/__init__.py +1 -0
- smartpi/tencentcloud-speech-sdk-python/__init__.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/asr/__init__.py +0 -0
- smartpi/tencentcloud-speech-sdk-python/asr/__init__.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/asr/flash_recognizer.py +178 -0
- smartpi/tencentcloud-speech-sdk-python/asr/flash_recognizer.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/asr/speech_recognizer.py +311 -0
- smartpi/tencentcloud-speech-sdk-python/asr/speech_recognizer.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/common/__init__.py +1 -0
- smartpi/tencentcloud-speech-sdk-python/common/__init__.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/common/credential.py +6 -0
- smartpi/tencentcloud-speech-sdk-python/common/credential.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/common/log.py +16 -0
- smartpi/tencentcloud-speech-sdk-python/common/log.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/common/utils.py +7 -0
- smartpi/tencentcloud-speech-sdk-python/common/utils.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/soe/__init__.py +0 -0
- smartpi/tencentcloud-speech-sdk-python/soe/__init__.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/soe/speaking_assessment.py +276 -0
- smartpi/tencentcloud-speech-sdk-python/soe/speaking_assessment.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/tts/__init__.py +0 -0
- smartpi/tencentcloud-speech-sdk-python/tts/__init__.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/tts/flowing_speech_synthesizer.py +294 -0
- smartpi/tencentcloud-speech-sdk-python/tts/flowing_speech_synthesizer.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/tts/speech_synthesizer.py +144 -0
- smartpi/tencentcloud-speech-sdk-python/tts/speech_synthesizer.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/tts/speech_synthesizer_ws.py +234 -0
- smartpi/tencentcloud-speech-sdk-python/tts/speech_synthesizer_ws.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/vc/__init__.py +0 -0
- smartpi/tencentcloud-speech-sdk-python/vc/__init__.pyc +0 -0
- smartpi/tencentcloud-speech-sdk-python/vc/speech_convertor_ws.py +237 -0
- smartpi/tencentcloud-speech-sdk-python/vc/speech_convertor_ws.pyc +0 -0
- smartpi/text_gte_model/__init__.py +0 -0
- smartpi/text_gte_model/__init__.pyc +0 -0
- smartpi/text_gte_model/config/__init__.py +0 -0
- smartpi/text_gte_model/config/__init__.pyc +0 -0
- smartpi/text_gte_model/gte/__init__.py +0 -0
- smartpi/text_gte_model/gte/__init__.pyc +0 -0
- smartpi/touch_sensor.py +16 -0
- smartpi/touch_sensor.pyc +0 -0
- smartpi/trace.py +120 -0
- smartpi/trace.pyc +0 -0
- smartpi/ultrasonic.py +20 -0
- smartpi/ultrasonic.pyc +0 -0
- {smartpi-1.1.4.dist-info → smartpi-1.1.5.dist-info}/METADATA +3 -2
- smartpi-1.1.5.dist-info/RECORD +137 -0
- smartpi-1.1.4.dist-info/RECORD +0 -77
- {smartpi-1.1.4.dist-info → smartpi-1.1.5.dist-info}/WHEEL +0 -0
- {smartpi-1.1.4.dist-info → smartpi-1.1.5.dist-info}/top_level.txt +0 -0
smartpi/trace.py
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
import time,fcntl,serial,threading
|
|
3
|
+
from typing import List, Optional
|
|
4
|
+
from smartpi import base_driver
|
|
5
|
+
|
|
6
|
+
# 串口配置参数
|
|
7
|
+
SERIAL_PORT = "/dev/ttyS3" # 串口设备路径
|
|
8
|
+
BAUD_RATE = 921600 # 波特率
|
|
9
|
+
TIMEOUT = 0.1 # 读取超时时间(秒)
|
|
10
|
+
|
|
11
|
+
ser = serial.Serial(
|
|
12
|
+
port=SERIAL_PORT,
|
|
13
|
+
baudrate=BAUD_RATE,
|
|
14
|
+
bytesize=serial.EIGHTBITS, # 8位数据位
|
|
15
|
+
parity=serial.PARITY_NONE, # 无校验位
|
|
16
|
+
stopbits=serial.STOPBITS_ONE, # 1位停止位
|
|
17
|
+
timeout=TIMEOUT,
|
|
18
|
+
xonxoff=False, # 关闭软件流控
|
|
19
|
+
rtscts=False, # 关闭硬件流控
|
|
20
|
+
)
|
|
21
|
+
|
|
22
|
+
# 创建全局线程锁
|
|
23
|
+
serial_lock = threading.RLock()
|
|
24
|
+
|
|
25
|
+
#循迹卡单通道阈值比较后的布尔值读取 port:连接P端口;chn:检测通道1~7;正常返回:通道布尔值; 读取错误:None
|
|
26
|
+
def get_chn_data(port:bytes, chn:bytes) -> Optional[bytes]:
|
|
27
|
+
trace_str=[0xA0, 0x18, 0x01, 0x71, 0x00, 0xBE]
|
|
28
|
+
trace_str[0]=0XA0+port
|
|
29
|
+
trace_str[4]=chn
|
|
30
|
+
time.sleep(0.005)
|
|
31
|
+
response = base_driver.single_operate_sensor(trace_str,0)
|
|
32
|
+
if response == None:
|
|
33
|
+
return None
|
|
34
|
+
else:
|
|
35
|
+
return response[4]
|
|
36
|
+
|
|
37
|
+
#循迹卡设置各通道颜色 port:连接P端口;color1~color7:7个通道彩灯的颜色1~7(红、绿、蓝、黄、紫、青、白)
|
|
38
|
+
def set_chn_color(port:bytes, color1:bytes, color2:bytes, color3:bytes, color4:bytes, color5:bytes, color6:bytes, color7:bytes) -> Optional[bytes]:
|
|
39
|
+
trace_str=[0xA0, 0x19, 0x01, 0x71, 0x00, 0x71, 0x00, 0x71, 0x00, 0x71, 0x00, 0x71, 0x00, 0x71, 0x00, 0x71, 0x00, 0xBE]
|
|
40
|
+
trace_str[0]=0XA0+port
|
|
41
|
+
trace_str[4]=color1
|
|
42
|
+
trace_str[6]=color2
|
|
43
|
+
trace_str[8]=color3
|
|
44
|
+
trace_str[10]=color4
|
|
45
|
+
trace_str[12]=color5
|
|
46
|
+
trace_str[14]=color6
|
|
47
|
+
trace_str[16]=color7
|
|
48
|
+
time.sleep(0.005)
|
|
49
|
+
base_driver.write_data(0X01, 0X02, trace_str)
|
|
50
|
+
# response = base_driver.single_operate_sensor(trace_str,0)
|
|
51
|
+
# if response == None:
|
|
52
|
+
# return None
|
|
53
|
+
# else:
|
|
54
|
+
return 0
|
|
55
|
+
|
|
56
|
+
#循迹卡设置全部颜色 port:连接P端口;color:全部彩灯的颜色1~7(红、绿、蓝、黄、紫、青、白)
|
|
57
|
+
def set_color(port:bytes, color:bytes) -> Optional[bytes]:
|
|
58
|
+
trace_str=[0xA0, 0x20, 0x01, 0x71, 0x00, 0xBE]
|
|
59
|
+
trace_str[0]=0XA0+port
|
|
60
|
+
trace_str[4]=color
|
|
61
|
+
time.sleep(0.005)
|
|
62
|
+
base_driver.write_data(0X01, 0X02, trace_str)
|
|
63
|
+
# response = base_driver.single_operate_sensor(trace_str,0)
|
|
64
|
+
# if response == None:
|
|
65
|
+
# return None
|
|
66
|
+
# else:
|
|
67
|
+
return 0
|
|
68
|
+
|
|
69
|
+
#循迹卡单通道光值读取 port:连接P端口;chn:检测通道;正常返回:通道光值数据; 读取错误:None
|
|
70
|
+
def get_analog(port:bytes, chn:bytes) -> Optional[bytes]:
|
|
71
|
+
trace_str=[0xA0, 0x21, 0x01, 0x71, 0x00, 0xBE]
|
|
72
|
+
trace_str[0]=0XA0+port
|
|
73
|
+
trace_str[4]=20+chn
|
|
74
|
+
time.sleep(0.005)
|
|
75
|
+
response = base_driver.single_operate_sensor(trace_str,0)
|
|
76
|
+
if response == None:
|
|
77
|
+
return None
|
|
78
|
+
else:
|
|
79
|
+
return response[4]
|
|
80
|
+
|
|
81
|
+
#循迹卡判断是否组合图形 port:连接P端口;state:判断图形组合 1:TT 2:TL 3:TR 4:TM 5:L2 6:L1 7:L 8:M 9:R 10:R1 11:R2
|
|
82
|
+
#正常返回:True/False; 读取错误:None
|
|
83
|
+
def get_line_state(port:bytes, state:bytes) -> Optional[bytes]:
|
|
84
|
+
trace_str=[0xA0, 0x22, 0x01, 0x71, 0x00, 0xBE]
|
|
85
|
+
trace_str[0]=0XA0+port
|
|
86
|
+
trace_str[4]=state
|
|
87
|
+
time.sleep(0.005)
|
|
88
|
+
response = base_driver.single_operate_sensor(trace_str,0)
|
|
89
|
+
if response == None:
|
|
90
|
+
return None
|
|
91
|
+
else:
|
|
92
|
+
return response[4]
|
|
93
|
+
|
|
94
|
+
#循迹卡自动设置灰度阈值 port:连接P端口;second:秒数
|
|
95
|
+
def set_threshold(port:bytes, second:int) -> Optional[bytes]:
|
|
96
|
+
trace_str=[0xA0, 0x23, 0x01, 0x81, 0x00, 0x00, 0xBE]
|
|
97
|
+
trace_str[0]=0XA0+port
|
|
98
|
+
trace_str[4]=second//256
|
|
99
|
+
trace_str[5]=second%256
|
|
100
|
+
time.sleep(0.005)
|
|
101
|
+
serial_lock.acquire() #获取线程锁
|
|
102
|
+
fcntl.flock(ser.fileno(), fcntl.LOCK_EX) # 进程锁,阻塞其他进程
|
|
103
|
+
base_driver.write_data(0X01, 0X02, trace_str, False)
|
|
104
|
+
start_time = time.time()
|
|
105
|
+
|
|
106
|
+
while True:
|
|
107
|
+
response =base_driver.process_received_data()
|
|
108
|
+
if response:
|
|
109
|
+
serial_lock.release() #释放线程锁
|
|
110
|
+
fcntl.flock(ser.fileno(), fcntl.LOCK_UN) # 释放进程锁
|
|
111
|
+
display_data = response[6:-3]
|
|
112
|
+
return display_data
|
|
113
|
+
else:
|
|
114
|
+
if time.time() - start_time > second+2:
|
|
115
|
+
print("读取超时")
|
|
116
|
+
base_driver.buf_clear()
|
|
117
|
+
serial_lock.release() #释放线程锁
|
|
118
|
+
fcntl.flock(ser.fileno(), fcntl.LOCK_UN) # 释放进程锁
|
|
119
|
+
return None
|
|
120
|
+
|
smartpi/trace.pyc
CHANGED
|
Binary file
|
smartpi/ultrasonic.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
import time
|
|
3
|
+
from typing import List, Optional
|
|
4
|
+
from smartpi import base_driver
|
|
5
|
+
|
|
6
|
+
#超声波测距传感器 port:连接P端口 正常返回:测距数据; 读取错误:-1
|
|
7
|
+
def get_value(port:bytes) -> Optional[bytes]:
|
|
8
|
+
ultrasonic_str=[0xA0, 0x06, 0x00, 0xBE]
|
|
9
|
+
ultrasonic_str[0]=0XA0+port
|
|
10
|
+
ultrasonic_str[2]=1
|
|
11
|
+
time.sleep(0.005)
|
|
12
|
+
response = base_driver.single_operate_sensor(ultrasonic_str,0)
|
|
13
|
+
|
|
14
|
+
if response == None:
|
|
15
|
+
return None
|
|
16
|
+
else:
|
|
17
|
+
distance_data=response[4:-1]
|
|
18
|
+
distance_num=int.from_bytes(distance_data, byteorder='big', signed=True)
|
|
19
|
+
return distance_num
|
|
20
|
+
|
smartpi/ultrasonic.pyc
CHANGED
|
Binary file
|
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: smartpi
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.5
|
|
4
4
|
Summary: A library use for H2-RCU
|
|
5
5
|
Author: ZMROBO
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
7
7
|
Classifier: License :: OSI Approved :: MIT License
|
|
8
8
|
Classifier: Operating System :: OS Independent
|
|
9
|
-
Requires-Python: >=3.7
|
|
9
|
+
Requires-Python: >=3.7, <3.12
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: numpy >=1.19.0
|
|
11
12
|
|
|
12
13
|
灵芯派函数库
|
|
13
14
|
SmartPi library
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
smartpi/__init__.py,sha256=kkhsfSeW9bxVhzyp1KNaRjpRDbUsz0BHbtmBB-pZblw,392
|
|
2
|
+
smartpi/__init__.pyc,sha256=Letl5VfZFBD5e-UMNRNaROM1f6EisCBDWoKzg5up6K0,634
|
|
3
|
+
smartpi/_gui.py,sha256=tUHNamQSvXUrYFNgWI5GexjL9mTy_qeW0xbIExkTGoM,2290
|
|
4
|
+
smartpi/_gui.pyc,sha256=Z5Quht83gZFvU5JPS3Gu3S4HvvWuayYmY-VHRwyyl90,3210
|
|
5
|
+
smartpi/ai_asr.py,sha256=wxh_1Klh8vJottAt19jq3qpOmM_Cw4DHQEPKpsHGhmE,40063
|
|
6
|
+
smartpi/ai_asr.pyc,sha256=JHSHZO8fUiGEJKTdjrpXlms_68rH9dnLqqGiKuU4DW0,24932
|
|
7
|
+
smartpi/ai_llm.py,sha256=-khBK2PMwbYUDvbaCTRCktE4dFloqfai4mHI-V8GEXM,36751
|
|
8
|
+
smartpi/ai_llm.pyc,sha256=Bisqa8F-t5tKpYDP0dx3CiKI5CgD8FtMO6wraqMawzU,24655
|
|
9
|
+
smartpi/ai_tts.py,sha256=OjAJs3XOykiufXuEDiaD0coKsWjknPdhwRpRzGLDZKU,36061
|
|
10
|
+
smartpi/ai_tts.pyc,sha256=OZ3qSgse03goO0WdLxyla2XLYB5XXROOOWrbsNzjPzA,22843
|
|
11
|
+
smartpi/ai_vad.py,sha256=9J1xxuKF8GvojkL_JuXv7_xE8bQAo5D49Xasi8piKK8,3630
|
|
12
|
+
smartpi/ai_vad.pyc,sha256=0so9RoLdXYk61W7ebv4r1rNOh2No6MAGXZiA5_omEwM,2389
|
|
13
|
+
smartpi/audio.py,sha256=Ca5rs-MhKNyNjvwVDyh4hpG4ssYG-MSO_I99MRsh8t0,3475
|
|
14
|
+
smartpi/audio.pyc,sha256=11EaA6tFMqMjBR_nyt8W5YsFdlYMvtTX2R4Qy_syhlU,2702
|
|
15
|
+
smartpi/base_driver.py,sha256=BwqgcYbQ9Rg8KiBJV2xy--NMNsMIg_zL-nnsAilCHJk,22687
|
|
16
|
+
smartpi/base_driver.pyc,sha256=vJ2tDmUTgMrtSGBAQuFchZ2aOPpSTOwjB3HSgpjQy3c,11868
|
|
17
|
+
smartpi/camera.py,sha256=AVpZsMpW-24CP3BOfarjmRawMJdTOZY7Crq7FeLOqb4,3292
|
|
18
|
+
smartpi/camera.pyc,sha256=yd7sFrv_khv5SFhYWzcpJH6X3Ci6zz5xcZ3_pqPaNNA,2505
|
|
19
|
+
smartpi/color_sensor.py,sha256=-oJU9tI28VAwy8lcc3J7PFVgAc-_fECYZwCQ-Uhq2Oo,554
|
|
20
|
+
smartpi/color_sensor.pyc,sha256=CGg0iY9IY95-nMKRL2fU1P-oNsPWbBzXL1-jeP0weB4,555
|
|
21
|
+
smartpi/cw2015.py,sha256=1lAF-pi_ye_ya1AZQS1sjbgsDf7MThO5IAskKsNGBzA,5695
|
|
22
|
+
smartpi/cw2015.pyc,sha256=tchjrkbsNvfyplrrkWhdAic8tZuvheWFcV_MAVxd1kg,5202
|
|
23
|
+
smartpi/flash.py,sha256=-pUqg6FSVoBiLFKqrG9B4dFqn8lICnQsSPJr_MtZLIU,4132
|
|
24
|
+
smartpi/flash.pyc,sha256=g6V8tvqsdVK-3SlErds3SF67pbMZCAYsgjh3-wkfSzc,3398
|
|
25
|
+
smartpi/humidity.py,sha256=uoSFt5mAKr-dHz125uznHXAPeTN61ZR92_2nQmytQ5M,522
|
|
26
|
+
smartpi/humidity.pyc,sha256=-_B7NGwN9c2yOvA_jrNokcSDQ713c_SATpYgm2Pw-js,559
|
|
27
|
+
smartpi/led.py,sha256=BUUDznPatAZW7raLqgb8851OwyMmC_7DsOtprhaL7IE,653
|
|
28
|
+
smartpi/led.pyc,sha256=QKfypoQycErV5aYsGzN0ls82xRDAl2Lkz5NZ0k-q1Ig,524
|
|
29
|
+
smartpi/light_sensor.py,sha256=5bZrAyo2gjrwWvbgJ5MF__awNI8oV6ZOMMmEdLD42zE,2498
|
|
30
|
+
smartpi/light_sensor.pyc,sha256=TKRPYobqvLxSORjQd_JE7IQhufUDtDpPoXudvdAmm7A,1815
|
|
31
|
+
smartpi/local_model.py,sha256=3LB93ZhR4ANIv57EF5PWeVN_LNoAMKLUGmQnQSrMe5Q,18961
|
|
32
|
+
smartpi/local_model.pyc,sha256=0v8_uopfRzrUKYt4sJgtI6gHgaveH5UxElG9N7Hd3jE,11006
|
|
33
|
+
smartpi/mcp_client.py,sha256=tPgivztxbENEUBaBEnFHfTuCqicTsXIObEBlbrrXPE4,3332
|
|
34
|
+
smartpi/mcp_client.pyc,sha256=CqR0VHuFIVWeUU2stE96dKuPdFb0bEilJOSGbze_l3I,2434
|
|
35
|
+
smartpi/mcp_fastmcp.py,sha256=2MRIShc7snk99MGIpWnQflToyIUfKziLOhZhSNZifzE,13316
|
|
36
|
+
smartpi/mcp_fastmcp.pyc,sha256=7whLSrEDRrnZm0cN2uFrW_mEgqNtt_d6KScdeuHjNO0,6990
|
|
37
|
+
smartpi/mcp_intent_recognizer.py,sha256=FGPHDu1DiPJoWTGEIN_vlFEHEBKyCGNLZegjxFyUcEk,18846
|
|
38
|
+
smartpi/mcp_intent_recognizer.pyc,sha256=KbFPobzhC5Zc9aMvC7g2DHM1lyW4igNKZk9cOXSAZxA,8932
|
|
39
|
+
smartpi/motor.py,sha256=GC1WNDb0e8EMn72Z8D7ff5G-mgRz56vXxb6NRHx3diQ,5451
|
|
40
|
+
smartpi/motor.pyc,sha256=3-ZnTLHLnsTfnMW739FyBisCapvpzzg_QRWQM7E_QXw,3588
|
|
41
|
+
smartpi/move.py,sha256=s1ZnkFtp6SCBnxhBxp6qQjGbifdsY5hjVCwlarTsZto,6688
|
|
42
|
+
smartpi/move.pyc,sha256=WFdNAT7dnFY7R3TexYMY6KzYTrodUhbZsJ05kn5hWns,3925
|
|
43
|
+
smartpi/onnx_hand_workflow.py,sha256=ZCoaWC6GygZSrhM6jhsuB6qmQ6GiAFFrso6rKAGmue8,8157
|
|
44
|
+
smartpi/onnx_hand_workflow.pyc,sha256=c-zLdxzS2aMAsPzCryG8golknT3hAddYHePtA1w3lpE,5096
|
|
45
|
+
smartpi/onnx_image_workflow.py,sha256=-saM_NxR6yDz06xlWZOvHf6cq3zmtOCFhCyZTGqvuOk,6188
|
|
46
|
+
smartpi/onnx_image_workflow.pyc,sha256=85TJisROHhM7G9SK9e7zETDwsvwuW0bXEfsBRUV4LIY,4324
|
|
47
|
+
smartpi/onnx_pose_workflow.py,sha256=w0zGlXXBgIcxwjLF7eYHPEePqRw3KXvKQUqzVd_UrzQ,20966
|
|
48
|
+
smartpi/onnx_pose_workflow.pyc,sha256=7Dr8jncfayN5ffEmq_jpifU1zQPzWuX3wcd5lizedsY,12228
|
|
49
|
+
smartpi/onnx_text_workflow.py,sha256=6l9MTT2T1-rNye3_dSHLI2U749Z94aoRdkSe6CNXfHw,7191
|
|
50
|
+
smartpi/onnx_text_workflow.pyc,sha256=spnjtK69L-Uwey9krxsqt7cmppCpDTYquqylUKTDto0,5138
|
|
51
|
+
smartpi/onnx_voice_workflow.py,sha256=jkMFzy3RUnLo8LZAuCUfsS3YCJWSZzZuiE4RFoQ2HZw,17440
|
|
52
|
+
smartpi/onnx_voice_workflow.pyc,sha256=jN-0JWwOoBNFJB5kWAafFVp521c52he7BLIAKIeXoY8,11464
|
|
53
|
+
smartpi/posenet_utils.py,sha256=o3scK41Eqvftav4y4vp6_6HinQWNCLeLpArXAzqQ-7s,8983
|
|
54
|
+
smartpi/posenet_utils.pyc,sha256=6dY8bd3htgIVuPDXlA_juYUOVcv5Zet-nBI0yTIZ8MQ,7178
|
|
55
|
+
smartpi/rknn_hand_workflow.py,sha256=wsVN_PYP9M-1AFaN4yqrGksUBoamYfujW0nQq4nv3kU,10160
|
|
56
|
+
smartpi/rknn_hand_workflow.pyc,sha256=43OshAKVtd1K9RxsxlTwzhMoZG0m_-BAGq_sA3PxkSA,6337
|
|
57
|
+
smartpi/rknn_image_workflow.py,sha256=4lTtcdmQ9KN5WiEnHayvqAd-dA0tiap5YXIqAMn5SoI,18444
|
|
58
|
+
smartpi/rknn_image_workflow.pyc,sha256=hFcln0sC1g2ZNEyDFud-547vAhJDqOSaKp-CeF7jgsk,13471
|
|
59
|
+
smartpi/rknn_pose_workflow.py,sha256=T09F9vcQ6-QG3PlFRpCI4AuTPzEl_s0C38wfMD21Ujo,27836
|
|
60
|
+
smartpi/rknn_pose_workflow.pyc,sha256=j61x4iYy_Oxtsbi29-gjvvuSmv0Qiw2bB0E7f93cbQw,14788
|
|
61
|
+
smartpi/rknn_text_workflow.py,sha256=KNBSetj3tmlLxdZOm0yzbiDnjH8S5191fuxh5Mi-uCY,9632
|
|
62
|
+
smartpi/rknn_text_workflow.pyc,sha256=ay_4NNkUgRhvpMYddbqMr6Nl5nzPl4fpmKYh0aG5eQM,7045
|
|
63
|
+
smartpi/rknn_voice_workflow.py,sha256=T8iRQWPtJYXqoHIZH2FiT1WLxwN3HQg4D-mg-5KvYdA,16326
|
|
64
|
+
smartpi/rknn_voice_workflow.pyc,sha256=ZVZFzYu4UnqT36o9U6GAvZdtDtEYB0z1jfdcHwjd8eU,11263
|
|
65
|
+
smartpi/servo.py,sha256=m9jy9x_K8o51g86u7ve9tbuCS8ssInflFrFwbi_rKYY,5968
|
|
66
|
+
smartpi/servo.pyc,sha256=3_t_hiypSpCRDhY9cVUDeKVewfElB0H3wnjHRBb4ZCk,3939
|
|
67
|
+
smartpi/temperature.py,sha256=dWK4RBDIDewpdL82f-s3E1B4F4KqG4VAS0dHgjnlKGM,508
|
|
68
|
+
smartpi/temperature.pyc,sha256=Zc6q7GIHFDHsDV7MXEXljuo6JarSAL48nmEDUvm3Agc,562
|
|
69
|
+
smartpi/touch_sensor.py,sha256=iF3vtcGZKxrCzCjItr_MpmjoKAdV2vUGUeV6TNiwomc,483
|
|
70
|
+
smartpi/touch_sensor.pyc,sha256=hrStYjwjv6oSfV2ZQQYSLqJarhN4nuHRDdZbxDraWkc,547
|
|
71
|
+
smartpi/trace.py,sha256=EZhhWspxv6FsjKkWvSNnqXR2XKrfjntvAqQm2vn9bbE,4798
|
|
72
|
+
smartpi/trace.pyc,sha256=GBxc0cdEUgiqPkQMhxvnW3F16LI_brUrUpclERvrH1A,2961
|
|
73
|
+
smartpi/ultrasonic.py,sha256=GMN_ohaUxILsanRP8rnBIg6_cqJxwNNza8KEyMmjyVQ,673
|
|
74
|
+
smartpi/ultrasonic.pyc,sha256=mBE4oG45xFWWyFA7j0l0LlHQbXMjqlfj1RTH1TKB9nA,669
|
|
75
|
+
smartpi/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
|
+
smartpi/models/__init__.pyc,sha256=ScrypVMl-uYoHbSArKxRiR8j4SzOR9ecU3B-Jhza3o0,123
|
|
77
|
+
smartpi/models/snakers4_silero-vad/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
78
|
+
smartpi/models/snakers4_silero-vad/__init__.pyc,sha256=fndZQRigLkQMQEs-3xvnBgmRJUpAea0hCg_8R7HfqIM,143
|
|
79
|
+
smartpi/models/snakers4_silero-vad/hubconf.py,sha256=lD99cUdVPWatwB6V4RNMayD2BWZcBPaTtcgmywqjTLs,1992
|
|
80
|
+
smartpi/models/snakers4_silero-vad/hubconf.pyc,sha256=RkQyV1rrxK0bD_gx_bdWFeEjh_EQbfBKp5h1uG-qlcU,1670
|
|
81
|
+
smartpi/models/snakers4_silero-vad/src/silero_vad/data/silero_vad.jit,sha256=hcSOHw7LYE5dKiaPPM-5EtT36TWs3IavWj_FsK6nspo,2269612
|
|
82
|
+
smartpi/models/snakers4_silero-vad/src/silero_vad/data/silero_vad.onnx,sha256=JiOilT9v89LB5hdAxs23FoEzR5smff7xFKSjzFvdeI8,2327524
|
|
83
|
+
smartpi/models/snakers4_silero-vad/src/silero_vad/data/silero_vad_16k_op15.onnx,sha256=todaSbrPbVeCan4KVJ1aBddp7jRAXK3Mn_i0RCVEsfk,1289603
|
|
84
|
+
smartpi/models/snakers4_silero-vad/src/silero_vad/data/silero_vad_half.onnx,sha256=HgsZWtSAZZXvRGb0GdFvyn5K_PxmabjAtfduqHVHx2k,1280395
|
|
85
|
+
smartpi/posemodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
86
|
+
smartpi/posemodel/__init__.pyc,sha256=xhAVPqkOpW9Gq7yiJwnOG463wg_9wExKR8dz-7TCypI,126
|
|
87
|
+
smartpi/posemodel/posenet.tflite,sha256=KFcCnk1X5KvJrVC_c_PhL76pdvwL0hZvBdNqhzZ7J2I,1303152
|
|
88
|
+
smartpi/tencentcloud-speech-sdk-python/__init__.py,sha256=-yYBDkgMDSHYf_F_uX23wZsDSjrudhppJvm34su8_I4,23
|
|
89
|
+
smartpi/tencentcloud-speech-sdk-python/__init__.pyc,sha256=xTX2la2DsIp-IQgkLDjjJ5cs-p76eWCCRE794T8WcwI,147
|
|
90
|
+
smartpi/tencentcloud-speech-sdk-python/asr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
+
smartpi/tencentcloud-speech-sdk-python/asr/__init__.pyc,sha256=3jBL-z4zSRe6NUtiZcptmbn6Ei1NSS_gy2sfg90BwZY,151
|
|
92
|
+
smartpi/tencentcloud-speech-sdk-python/asr/flash_recognizer.py,sha256=FWJcVxkN6_KyeXmAhhlueoVvexs-dGnfzw3N7jPBPa8,5752
|
|
93
|
+
smartpi/tencentcloud-speech-sdk-python/asr/flash_recognizer.pyc,sha256=NAcy0jLpFqwiIPTxAvEq5OnWIISHnoaT3ZU8PcFes9M,6585
|
|
94
|
+
smartpi/tencentcloud-speech-sdk-python/asr/speech_recognizer.py,sha256=1X_5eSUEJGBDzffvKvIKFbwRgviXNGb7sTZqS7szyOc,9568
|
|
95
|
+
smartpi/tencentcloud-speech-sdk-python/asr/speech_recognizer.pyc,sha256=N7zXF7Rs1vjXlVGGXqdLwXfbWbJ2PlGgzmpAnFtduaY,9908
|
|
96
|
+
smartpi/tencentcloud-speech-sdk-python/common/__init__.py,sha256=CCIy8VClDV-BJWH-I2ntU0gcfShap6HEMWpdjSYGPKc,23
|
|
97
|
+
smartpi/tencentcloud-speech-sdk-python/common/__init__.pyc,sha256=D1SGcB2cCv4luACsBLrX7Ta720u_gzxNSeYOQH0rEBw,154
|
|
98
|
+
smartpi/tencentcloud-speech-sdk-python/common/credential.py,sha256=Igqg4FexZXidjj0W8MfqRJc-2gPrhIbm3w2re3QVBL0,198
|
|
99
|
+
smartpi/tencentcloud-speech-sdk-python/common/credential.pyc,sha256=ZPewv_SI4g8YMo-ELNak97T_R-AeonkUFZ5fVAEN8FI,495
|
|
100
|
+
smartpi/tencentcloud-speech-sdk-python/common/log.py,sha256=ekZVwv6USLyShxLTB-Mhog0g8w-qGkklOJjuAUtvQsk,536
|
|
101
|
+
smartpi/tencentcloud-speech-sdk-python/common/log.pyc,sha256=Q26j3AA8RuXwelhvDxSBTwxsWX_PZt1_OVMs1qWwGyE,616
|
|
102
|
+
smartpi/tencentcloud-speech-sdk-python/common/utils.py,sha256=baodAxaEpbGJQPmtvLQyyuav5K3ht_UBVq8s1yNH5Ww,116
|
|
103
|
+
smartpi/tencentcloud-speech-sdk-python/common/utils.pyc,sha256=dDV-2s4RQxML7rFHXjnK34o7mFKsNgWtuDuS-6SNhW4,301
|
|
104
|
+
smartpi/tencentcloud-speech-sdk-python/examples/tts/tts_text.txt,sha256=ufooughGwSPBnLxulH1BNwTFqsDSoLlvjRa2o-PJy1g,2669
|
|
105
|
+
smartpi/tencentcloud-speech-sdk-python/soe/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
|
+
smartpi/tencentcloud-speech-sdk-python/soe/__init__.pyc,sha256=_XGNVUvnz8365EBzuAJ5VuoLtXGffVjo4fvVYQFXo3o,151
|
|
107
|
+
smartpi/tencentcloud-speech-sdk-python/soe/speaking_assessment.py,sha256=J4C2uAqRCVh9qICe6Ug-nJmnvmsJCfa2uylOXo6V-y8,8289
|
|
108
|
+
smartpi/tencentcloud-speech-sdk-python/soe/speaking_assessment.pyc,sha256=xrW6y5opvEVPlCigeLqyFC8W3nNinQjN22YE_7jD72M,8639
|
|
109
|
+
smartpi/tencentcloud-speech-sdk-python/tts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
110
|
+
smartpi/tencentcloud-speech-sdk-python/tts/__init__.pyc,sha256=3WltFBUIiYirnKsWtXTaoMxmcFwk3_REemWr_CrnzMs,151
|
|
111
|
+
smartpi/tencentcloud-speech-sdk-python/tts/flowing_speech_synthesizer.py,sha256=X20uhp-yfqtRBnwzpxnt6hBtTkvAGgzh4OzjnAgLGQs,9908
|
|
112
|
+
smartpi/tencentcloud-speech-sdk-python/tts/flowing_speech_synthesizer.pyc,sha256=1LqwSI8l5clheAzTONHHgwlW_sOgjUN45fySw5Nbv94,10745
|
|
113
|
+
smartpi/tencentcloud-speech-sdk-python/tts/speech_synthesizer.py,sha256=8UltVigufuvIN_tYzUwsLsI4882MB7ZjAjelgyKDHjA,4216
|
|
114
|
+
smartpi/tencentcloud-speech-sdk-python/tts/speech_synthesizer.pyc,sha256=ryImMA_D-ROaA9eBOob9AtYvgy-3jcUVJdOjGS4SzsI,4720
|
|
115
|
+
smartpi/tencentcloud-speech-sdk-python/tts/speech_synthesizer_ws.py,sha256=G8Jc8S74Gekgsp_qFmgYN3IBRfeQWD8AtbwAl6NdMGE,7648
|
|
116
|
+
smartpi/tencentcloud-speech-sdk-python/tts/speech_synthesizer_ws.pyc,sha256=1ULASF8xhAPwZ5a19Y4Wd_pTzDUEqeZ-3QzE_RBL3UU,8372
|
|
117
|
+
smartpi/tencentcloud-speech-sdk-python/vc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
118
|
+
smartpi/tencentcloud-speech-sdk-python/vc/__init__.pyc,sha256=NzwtDNyTktHwMdnKUe1v-7-l3A7G8MC4NwzDGJqdOCE,150
|
|
119
|
+
smartpi/tencentcloud-speech-sdk-python/vc/speech_convertor_ws.py,sha256=JKZhJlFy4RTDVrg9Vqyr3cenNgHkK-NtJoTboVeX-dU,7799
|
|
120
|
+
smartpi/tencentcloud-speech-sdk-python/vc/speech_convertor_ws.pyc,sha256=t8kvETKXsFe86rm7EenUgfILRQwZSfgcH9i93hfFwxA,8096
|
|
121
|
+
smartpi/text_gte_model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
|
+
smartpi/text_gte_model/__init__.pyc,sha256=ePtPBzFJ9hMRp4OM-W2-7Jlzzk7zaDkbFlpNZiwE5BE,131
|
|
123
|
+
smartpi/text_gte_model/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
124
|
+
smartpi/text_gte_model/config/__init__.pyc,sha256=n_q5SrCzuSwIOKo-K_V1NBHUkNKaJlUlfkClaJj7Y08,138
|
|
125
|
+
smartpi/text_gte_model/config/config.json,sha256=dkFw_GRLSEkp6VT2U92alaGUfCRRJBQysJYSbJYznLc,818
|
|
126
|
+
smartpi/text_gte_model/config/quantize_config.json,sha256=snZbw5kBj_FupAbcYazm_11wNRCbX2m468VBjl6svd4,703
|
|
127
|
+
smartpi/text_gte_model/config/special_tokens_map.json,sha256=PDUH823_V7zkNyI9s7MIHR4rUuw-Vu5VQ4GT7LLJTdY,132
|
|
128
|
+
smartpi/text_gte_model/config/tokenizer.json,sha256=BC58aSuzfzE-tNG0UDwcFfNT_mJOYFaLoVoOs_JBEjQ,312882
|
|
129
|
+
smartpi/text_gte_model/config/tokenizer_config.json,sha256=w5RiDifbeIYy6vyGX5v94vFmcko1TMItqnY0RfcBO1Q,639
|
|
130
|
+
smartpi/text_gte_model/config/vocab.txt,sha256=oi9hP3uz_8h8XoHNh6rgLnVdJbIEm75zKoSKM8HzsC8,84758
|
|
131
|
+
smartpi/text_gte_model/gte/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
132
|
+
smartpi/text_gte_model/gte/__init__.pyc,sha256=Xl2sRrcgq7V0Qcz9OhP99hyGo3DkuLUV7i4XcePsxQU,135
|
|
133
|
+
smartpi/text_gte_model/gte/gte_model.onnx,sha256=XXYg6TUhzOx1SqAhp6ePDU0QgeK6DQEqHATMuQQJCNE,30468366
|
|
134
|
+
smartpi-1.1.5.dist-info/METADATA,sha256=6c7JukrtxQDd8_h-2Vi6b1UYIROtkja3tFxBxF0oivU,752
|
|
135
|
+
smartpi-1.1.5.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
136
|
+
smartpi-1.1.5.dist-info/top_level.txt,sha256=PoLhUCmWAiQUg5UeN2fS-Y1iQyBbF2rdUlizXtpHGRQ,8
|
|
137
|
+
smartpi-1.1.5.dist-info/RECORD,,
|
smartpi-1.1.4.dist-info/RECORD
DELETED
|
@@ -1,77 +0,0 @@
|
|
|
1
|
-
smartpi/__init__.pyc,sha256=nrGBJr_70YTIVzhzwnh7eKJlbh4suW1DqRuFo-Sfgys,634
|
|
2
|
-
smartpi/_gui.pyc,sha256=IrjDYKc2r_rz5EXpZ_Mbgf2T8Y96t-0hcynaSN2hY78,3210
|
|
3
|
-
smartpi/ai_asr.pyc,sha256=WNu8j7Qt9-bpZk_8IP2bs9EYwCeWsr_hDRwlllocAG8,24932
|
|
4
|
-
smartpi/ai_llm.pyc,sha256=rIg4UZnCJU4XSGmfgxnAB7SoN_fW3_aw3Pa7bL2b7JM,24655
|
|
5
|
-
smartpi/ai_tts.pyc,sha256=cFhvuclBTB1aPsHPvh3ifQD_zD9f3b_eLmleBkXPhjo,22843
|
|
6
|
-
smartpi/ai_vad.pyc,sha256=bOkTuayKV3EdoykacrmloNEUMOou65N1nQ-VQOz5KS4,2389
|
|
7
|
-
smartpi/audio.pyc,sha256=JuQmkXWO5E_UQNW98MvnaVYK2PM2Ao0_UAgYMOxN8MI,2702
|
|
8
|
-
smartpi/base_driver.pyc,sha256=pnBYscQ1AR12vBjtimsIPinZUqdspQxRUv6K5dEPkf4,11868
|
|
9
|
-
smartpi/camera.pyc,sha256=yqLpk7_Lo4ExLkeGDN-FFTjWhU5zeEcQEVR5jAiSYyg,2505
|
|
10
|
-
smartpi/color_sensor.pyc,sha256=hy7Fn_d6dkHR21IpmNWYVRRqivaOnAleEppOcp1EHMM,555
|
|
11
|
-
smartpi/cw2015.pyc,sha256=4hjRNSbqZFgjnjJCgbg4bkOzxfRqE4A9doIgYQeCLfQ,5202
|
|
12
|
-
smartpi/flash.pyc,sha256=_VOwx9OdqCvtMITNnujtmBxjQvmoa2DIB81MyH9By_Q,3398
|
|
13
|
-
smartpi/humidity.pyc,sha256=BLrLJipaw4DTDTCPj53OpPWDPXI6AD92cXT2HieWtpo,559
|
|
14
|
-
smartpi/led.pyc,sha256=t5PA1-zR8bxh2j_AMiSMbpDKSiivpEmUgFpFDKeu9dg,524
|
|
15
|
-
smartpi/light_sensor.pyc,sha256=WEmc1TBQcNVm5wejppwyilQYoc4-UwcG7iSvtMOr-Cc,1815
|
|
16
|
-
smartpi/local_model.pyc,sha256=9RIXUnvcsCZoF4HpsRzaG-tNSN5ycrCeIm3pwoLPFLM,11006
|
|
17
|
-
smartpi/mcp_client.pyc,sha256=f68j1tFm-lUJUTmfH6rAEXM5h21q0A8TTDu46FoPAEI,2434
|
|
18
|
-
smartpi/mcp_fastmcp.pyc,sha256=PnUk-JNCd_HhSIKORCGRqIZkFA4uVEWeMh7hvT32RPU,6990
|
|
19
|
-
smartpi/mcp_intent_recognizer.pyc,sha256=xR3L2adPWDlQ3v4196tNxUZpt6rCoYMmDnNiiPcJNKE,8932
|
|
20
|
-
smartpi/motor.pyc,sha256=8fKCo_l6MmybVxp4rqicgh-N5wQd8iy5Hk98B-kdQkY,3588
|
|
21
|
-
smartpi/move.pyc,sha256=eXoVwdXM2ErVBDBVKP3iQsMRrPAwsLUmWho_R47OiN0,3925
|
|
22
|
-
smartpi/onnx_hand_workflow.pyc,sha256=j6C39kIaEcvGz8a2_BiElFIwZA0aTU9caQD3i0AEZ-k,5096
|
|
23
|
-
smartpi/onnx_image_workflow.pyc,sha256=7pA9KFIRVj7pehYx8JDbhEi6flA2HGmGmOhZIB4hCx8,4324
|
|
24
|
-
smartpi/onnx_pose_workflow.pyc,sha256=717OA937bbddO4VtHCE4kVBmJbM0pXmGwZwdrIPEWgc,12228
|
|
25
|
-
smartpi/onnx_text_workflow.pyc,sha256=2oEjNJ7RRKXpKDenCpXP-1Q0-Qf1ZmpAkWUeY3g1X50,5138
|
|
26
|
-
smartpi/onnx_voice_workflow.pyc,sha256=NK5yLr4_cSY8KGxIgvXW28yeeikNiPMg53EJzYoQAT0,11464
|
|
27
|
-
smartpi/posenet_utils.pyc,sha256=UyvJvKcbee8doj_AdA9AIxqkQG5B5cdHIcYqIJakPIA,7178
|
|
28
|
-
smartpi/rknn_hand_workflow.pyc,sha256=1IeTkJ7trCDl4uxClo-2Se5zbcgULRQuhqTiM2NXxHY,6337
|
|
29
|
-
smartpi/rknn_image_workflow.pyc,sha256=cMNlEy7tQ9vALsdGiwf_PQ7nZERshLXaRgnBC4m4S9Y,13471
|
|
30
|
-
smartpi/rknn_pose_workflow.pyc,sha256=fDjilnAIoiRXdWQH4bBqyeHyMDFu0yORP0sCcgAiTX8,14788
|
|
31
|
-
smartpi/rknn_text_workflow.pyc,sha256=5EFrGEWr_Jtfw6GOxc3de_DvUPdZ4T2eT4TEkgeN5FM,7045
|
|
32
|
-
smartpi/rknn_voice_workflow.pyc,sha256=kG3c2u55XxK5qgLMmLXK2tdyTXJFbsBg4a-NOH5LT4U,11263
|
|
33
|
-
smartpi/servo.pyc,sha256=qYBjaSpcAcP0GAz-sfxLSIVWVx1lf1pAhI5tdQYqGu4,3939
|
|
34
|
-
smartpi/temperature.pyc,sha256=OGX4vJWEOSHMSH7GvVsJYENog3oL03O-w029S7H3GBM,562
|
|
35
|
-
smartpi/touch_sensor.pyc,sha256=pP3A-q6C6cbny3BI5UEz8YVlPCDLu0KPnLbjRq--Puw,547
|
|
36
|
-
smartpi/trace.pyc,sha256=-eEjs1GCrNK_NdlUCQ6ceQl58r2ReJMNavnw43OMg-o,2961
|
|
37
|
-
smartpi/ultrasonic.pyc,sha256=0M1oxTHHwy2xRJE__8z4zkFUzUKrvhp7eEBgiTFaHrE,669
|
|
38
|
-
smartpi/models/__init__.pyc,sha256=E86afeNF4cpXC8dXcVIHYexFqP6tMYkoU57RMZvW5NQ,123
|
|
39
|
-
smartpi/models/snakers4_silero-vad/__init__.pyc,sha256=R8iJJ09FtzrboGIUK0eS5OtuN1fwRUDrBroYUCJUrdM,143
|
|
40
|
-
smartpi/models/snakers4_silero-vad/hubconf.pyc,sha256=lSv9zmssiH00hpAa1g0_LfTSXqeExHdIUY0BLfSRIV0,1670
|
|
41
|
-
smartpi/models/snakers4_silero-vad/src/silero_vad/data/silero_vad.jit,sha256=hcSOHw7LYE5dKiaPPM-5EtT36TWs3IavWj_FsK6nspo,2269612
|
|
42
|
-
smartpi/models/snakers4_silero-vad/src/silero_vad/data/silero_vad.onnx,sha256=JiOilT9v89LB5hdAxs23FoEzR5smff7xFKSjzFvdeI8,2327524
|
|
43
|
-
smartpi/models/snakers4_silero-vad/src/silero_vad/data/silero_vad_16k_op15.onnx,sha256=todaSbrPbVeCan4KVJ1aBddp7jRAXK3Mn_i0RCVEsfk,1289603
|
|
44
|
-
smartpi/models/snakers4_silero-vad/src/silero_vad/data/silero_vad_half.onnx,sha256=HgsZWtSAZZXvRGb0GdFvyn5K_PxmabjAtfduqHVHx2k,1280395
|
|
45
|
-
smartpi/posemodel/__init__.pyc,sha256=O1a4E9mjE-ll0SPa94IYRGmKsgRq8hlZF47MqC7lzfg,126
|
|
46
|
-
smartpi/posemodel/posenet.tflite,sha256=KFcCnk1X5KvJrVC_c_PhL76pdvwL0hZvBdNqhzZ7J2I,1303152
|
|
47
|
-
smartpi/tencentcloud-speech-sdk-python/__init__.pyc,sha256=-dGIZMJNBTmKuG9pYY1HjCQgGP6x6VKMBrFLcbKdcPk,147
|
|
48
|
-
smartpi/tencentcloud-speech-sdk-python/asr/__init__.pyc,sha256=LDsiE5nPqnOt-0U1CLu7s0cVC6aY1a3EAMNx0VnMLIg,151
|
|
49
|
-
smartpi/tencentcloud-speech-sdk-python/asr/flash_recognizer.pyc,sha256=RZVCAMfsJh31FdaZPuYhVEVtYU_G5l5IBHHiEN5ipuI,6585
|
|
50
|
-
smartpi/tencentcloud-speech-sdk-python/asr/speech_recognizer.pyc,sha256=5a9XrPtgCAMFJk2NSkcPSO_R-Ruu0Ee3F3pLD41djgM,9908
|
|
51
|
-
smartpi/tencentcloud-speech-sdk-python/common/__init__.pyc,sha256=S60AZsXboYpfhRBz_h20yfy3o3WGvG1IvSswJkbBX7Y,154
|
|
52
|
-
smartpi/tencentcloud-speech-sdk-python/common/credential.pyc,sha256=HKvhuRLfnxbs2uLxakX15Url3Sbd1H0sBwkPJy4qDH0,495
|
|
53
|
-
smartpi/tencentcloud-speech-sdk-python/common/log.pyc,sha256=VCIUlCTCFuDum2k1gNM-t_XS871MhqRg9f_GB3x1zto,616
|
|
54
|
-
smartpi/tencentcloud-speech-sdk-python/common/utils.pyc,sha256=Kv97rcP3LA5RxDFz68nAL8430EUdY0DlkpYT_9VaOBA,301
|
|
55
|
-
smartpi/tencentcloud-speech-sdk-python/examples/tts/tts_text.txt,sha256=ufooughGwSPBnLxulH1BNwTFqsDSoLlvjRa2o-PJy1g,2669
|
|
56
|
-
smartpi/tencentcloud-speech-sdk-python/soe/__init__.pyc,sha256=21mcVT7ZecwjybohRrSJ9vBzuXmQD6z53iHWz-sQbiU,151
|
|
57
|
-
smartpi/tencentcloud-speech-sdk-python/soe/speaking_assessment.pyc,sha256=0p4izNmCEdjAJEkYNXH2Gir_FfiBb40N6RdMQQfeYbE,8639
|
|
58
|
-
smartpi/tencentcloud-speech-sdk-python/tts/__init__.pyc,sha256=-tn8o4rG_cwSkKlfRN9Khy0SxEGPy8t0jCO-kbXmMp0,151
|
|
59
|
-
smartpi/tencentcloud-speech-sdk-python/tts/flowing_speech_synthesizer.pyc,sha256=tZLz-FWY_c34iUpQz56oaeQA0mprnrK0fgYMS_4MlNo,10745
|
|
60
|
-
smartpi/tencentcloud-speech-sdk-python/tts/speech_synthesizer.pyc,sha256=xzGecG2k1VfFdO2mQRZpmwGcfkVJSb7Uk7UaBYWwGy4,4720
|
|
61
|
-
smartpi/tencentcloud-speech-sdk-python/tts/speech_synthesizer_ws.pyc,sha256=FS4hsLZu3InBhg5jFDaxt2I4ymKX0tEc3mTGqK8_xgY,8372
|
|
62
|
-
smartpi/tencentcloud-speech-sdk-python/vc/__init__.pyc,sha256=6dqx6MZcU-KsWvDIXdCZg0FVw1SotyCwg3eMKyCBtgY,150
|
|
63
|
-
smartpi/tencentcloud-speech-sdk-python/vc/speech_convertor_ws.pyc,sha256=eZEZQlb6qF28__yth1aCtrDQIirwJ9uTgTiK7R0Fbbc,8096
|
|
64
|
-
smartpi/text_gte_model/__init__.pyc,sha256=UiJje8M-UeU2StZgBkQ_AukM6bdPVs0RsOFTHdbOtoQ,131
|
|
65
|
-
smartpi/text_gte_model/config/__init__.pyc,sha256=az7K1J_Yz6lLAW1WEkEJq7Fbb7Ik0XFMmAXvxYoIV_Q,138
|
|
66
|
-
smartpi/text_gte_model/config/config.json,sha256=dkFw_GRLSEkp6VT2U92alaGUfCRRJBQysJYSbJYznLc,818
|
|
67
|
-
smartpi/text_gte_model/config/quantize_config.json,sha256=snZbw5kBj_FupAbcYazm_11wNRCbX2m468VBjl6svd4,703
|
|
68
|
-
smartpi/text_gte_model/config/special_tokens_map.json,sha256=PDUH823_V7zkNyI9s7MIHR4rUuw-Vu5VQ4GT7LLJTdY,132
|
|
69
|
-
smartpi/text_gte_model/config/tokenizer.json,sha256=BC58aSuzfzE-tNG0UDwcFfNT_mJOYFaLoVoOs_JBEjQ,312882
|
|
70
|
-
smartpi/text_gte_model/config/tokenizer_config.json,sha256=w5RiDifbeIYy6vyGX5v94vFmcko1TMItqnY0RfcBO1Q,639
|
|
71
|
-
smartpi/text_gte_model/config/vocab.txt,sha256=oi9hP3uz_8h8XoHNh6rgLnVdJbIEm75zKoSKM8HzsC8,84758
|
|
72
|
-
smartpi/text_gte_model/gte/__init__.pyc,sha256=_j8q1v17RlMqa0GOCJFx_FzfIMDtZVkquIvnoTWNCUY,135
|
|
73
|
-
smartpi/text_gte_model/gte/gte_model.onnx,sha256=XXYg6TUhzOx1SqAhp6ePDU0QgeK6DQEqHATMuQQJCNE,30468366
|
|
74
|
-
smartpi-1.1.4.dist-info/METADATA,sha256=BwPz_C3uZtA2dGpnxLtazt1ocubK-5l0-iKNk1EJ058,715
|
|
75
|
-
smartpi-1.1.4.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
76
|
-
smartpi-1.1.4.dist-info/top_level.txt,sha256=PoLhUCmWAiQUg5UeN2fS-Y1iQyBbF2rdUlizXtpHGRQ,8
|
|
77
|
-
smartpi-1.1.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|