An AI toolkit that helps users quickly call interfaces related to the Xiaothink framework.
Project description
Xiaothink Python Module Usage Documentation
Xiaothink is an AI research organization focused on Natural Language Processing (NLP), dedicated to training advanced on-device models with limited data and computing resources. The Xiaothink Python module is our core toolkit, covering various functions such as text-based Q&A, multimodal Q&A, image compression, sentiment classification, and more. Below is the detailed usage guide and code examples.
Table of Contents
- Installation
- Local Dialogue Models
- Image Feature Extraction and Multimodal Dialogue
- Image Compression to Feature Technology (img_zip)
- Sentiment Classification Tool
- AI Rate Detection Tool
- Changelog
Installation
First, you need to install the Xiaothink module via pip:
pip install xiaothink
License
This project is licensed under the Apache License, Version 2.0 - see the LICENSE file for details.
The NOTICE file contains additional attribution information for the proprietary technologies included in this module.
Local Text-only Dialogue Models
For locally loaded dialogue models, you should call the corresponding function according to the model type.
Single-turn Dialogue (to be removed in future versions)
Suitable for single-turn dialogue scenarios.
Example Code
import xiaothink.llm.inference.test_formal as tf
model = tf.QianyanModel(
ckpt_dir=r'path/to/your/t6_model',
MT='t6_beta_dense',
vocab=r'path/to/your/vocab'# vocab file is provided in the model repository
)
while True:
inp = input('[Q]: ')
if inp == '[CLEAN]':
print('[Context Cleared]\n\n')
model.clean_his()
continue
re = model.chat_SingleTurn(inp, temp=0.32) # Use chat_SingleTurn for single-turn dialogue
print('\n[A]:', re, '\n')
Multi-turn Dialogue
Suitable for multi-turn dialogue scenarios.
Example Code
import xiaothink.llm.inference.test_formal as tf
model = tf.QianyanModel(
ckpt_dir=r'path/to/your/t6_model',
MT='t6_beta_dense',
vocab=r'path/to/your/vocab'# vocab file is provided in the model repository
)
while True:
inp = input('[Q]: ')
if inp == '[CLEAN]':
print('[Context Cleared]\n\n')
model.clean_his()
continue
re = model.chat(inp, temp=0.32) # Use chat for multi-turn dialogue
print('\n[A]:', re, '\n')
Text Continuation
Suitable for more flexible text continuation scenarios.
Example Code
import xiaothink.llm.inference.test as test
MT = 't6_beta_dense'
m, d = test.load(
ckpt_dir=r'path/to/your/t6_model',
MT='t6_beta_dense',
vocab=r'path/to/your/vocab'# vocab file is provided in the model repository
)
inp='Hello!'
belle_chat = '{"conversations": [{"role": "user", "content": {inp}}, {"role": "assistant", "content": "'.replace('{inp}', inp) # Instruct format supported by instruction-tuned models in the T6 series
inp_m = belle_chat
ret = test.generate_texts_loop(m, d, inp_m,
num_generate=100,
every=lambda a: print(a, end='', flush=True),
temperature=0.32,
pass_char=['▩']) # ▩ is the <unk> token for T6 series models
Important Note: For local models, it is recommended to use the model.chat function for multi-turn dialogue. For pre-trained models without instruction tuning, it is recommended to use the test.generate_texts_loop function. The single-turn dialogue function model.chat_SingleTurn will be removed in future versions.
PaddlePaddle-based Models (New in v1.4.0)
Xiaothink now supports PaddlePaddle-based models with RWKV architecture. These models offer efficient inference and are suitable for resource-constrained environments.
Installation
pip install xiaothink
pip install paddlepaddle # or paddlepaddle-gpu for GPU support
Multi-turn Dialogue (PaddlePaddle)
from xiaothink.llm.inference_paddle import QianyanModel
model = QianyanModel(
ckpt_dir=r'path/to/your/t7.5_model',
MT='t7.5_paddle_small_instruct_pro'
)
while True:
inp = input('[Q]: ')
if inp == '[CLEAN]':
print('[Context Cleared]\n\n')
model.clean_his()
continue
re = model.chat(inp, temp=0.34, form=2) # form=2 for simplified format
print('\n[A]:', re, '\n')
Text Generation (PaddlePaddle)
from xiaothink.llm.inference_paddle import TextGenerator
generator = TextGenerator(
checkpoint_path=r'path/to/your/t7.5_model',
MT='t7.5_paddle_small_instruct_pro'
)
generator.load_model()
generated_text = generator.generate_text(
prompt='<|U|>Hello, how are you?<|A|>',
max_length=100,
temperature=0.8,
top_p=0.9,
repetition_penalty=1.2
)
print(generated_text)
Supported Model Architectures (PaddlePaddle)
| Model Name | MT Parameter | Description |
|---|---|---|
| Xiaothink-T7.5-0.1B | 't7.5_paddle_small_instruct' | Base instruction model |
| Xiaothink-T7.5-0.1B-Pro | 't7.5_paddle_small_instruct_pro' | Enhanced instruction model |
| Xiaothink-T7.5-0.1B-Thinking | 't7.5_paddle_small_instruct_thinking' | Chain-of-thought model |
| Xiaothink-T7.5-0.1B-Poem | 't7.5_paddle_small_instruct_poem' | Poetry generation model |
| Xiaothink-T7.5-0.1B-Translator | 't7.5_paddle_small_instruct_translator' | Translation model |
Automatic Device Selection
The PaddlePaddle module automatically selects the optimal device based on GPU memory usage:
# Automatic device selection (default)
# If GPU memory usage > 80%, switches to CPU
AUTO_DEVICE = True
GPU_MEMORY_THRESHOLD = 80.0
# Or manually set device
import paddle
paddle.set_device('cpu') # or 'gpu:0'
Train-On-Time (TOT) Dynamic Learning
Xiaothink provides an innovative Train-On-Time (TOT) feature that enables dynamic learning during inference. Unlike traditional models that only use pre-trained knowledge, TOT models continuously learn from similar examples in your training data repository.
How TOT Works:
- Similarity Matching: Automatically finds similar instructions from your training data
- Dynamic Fine-tuning: Fine-tunes the model in memory using these similar examples
- Enhanced Response: Generates more accurate answers based on the newly learned knowledge
- Memory Management: Optimizes GPU memory usage and cleans up resources
Key Features:
- Real-time Learning: Every conversation triggers learning from relevant examples
- Similarity-based Matching: Uses difflib to find semantically similar instructions
- Parallel Processing: Multi-core similarity calculation for faster matching
- Multi-format Support: Loads models from various checkpoint formats
- GPU Optimization: Automatic GPU memory management
from xiaothink.llm.inference_paddle import TOTModel, TOT_AVAILABLE
if TOT_AVAILABLE:
# 自定义训练数据路径
custom_data_paths = [
r'path/to/your/belle_train.jsonl',
r'path/to/your/coig_minimind.jsonl',
r'path/to/your/firefly_data.jsonl'
]
model = TOTModel(
ckpt_dir=r'path/to/your/t7.5_model',
MT='t7.5_paddle_small_instruct_pro',
data_paths=custom_data_paths # 自定义训练数据路径
)
# The model will automatically learn from similar examples before answering
while True:
inp = input('[Q]: ')
if inp == '[CLEAN]':
model.clean_his()
continue
re = model.chat(inp, temp=0.68)
print('\n[A]:', re, '\n')
else:
print("TOT feature requires PaddlePaddle support")
Custom Data Paths: You can now specify your own training data paths when initializing TOTModel:
# Default behavior (uses built-in paths)
model = TOTModel(ckpt_dir='path/to/model')
# Custom data paths
model = TOTModel(
ckpt_dir='path/to/model',
data_paths=[
'path/to/data1.jsonl',
'path/to/data2.jsonl',
'path/to/data3.txt'
]
)
Training Data Requirements: TOT looks for training data in these locations:
belle_train_3.5M_CN_minimindtype.jsonlcoig_minimind.jsonlminimindtype_firefly_1_1M.jsonl- Various instruct format files
- Poem and translation data
Memory Optimization:
- Automatic GPU memory cleanup
- In-memory fine-tuning without disk writes
- Batch processing for efficient training
Image Feature Extraction and Multimodal Dialogue
Dual-vision Solution
In version 1.2.0, we introduced an innovative dual-vision solution:
- Image Compression to Feature (img_zip): Convert images to text tokens that can be inserted anywhere in the dialogue.
- Native Vision Encoder: Pass the latest image to the native vision model's vision encoder (standard approach).
This solution achieves:
- Detailed analysis of the latest single image based on the native vision encoder
- Understanding of multiple images in the context based on img_zip technology
- Significant reduction in computing resource requirements
Vision Model Usage Guidelines
For vision-enabled models, regardless of whether there is image input, you should use the following code:
from xiaothink.llm.inference.test_formal import QianyanModel
if __name__ == '__main__':
model = QianyanModel(
ckpt_dir=r'path/to/your/vision_model',
MT='t6_standard_vision', # Note: model type is vision model
vocab=r'path/to/your/vocab.txt',
imgzip_model_path='path/to/img_zip/model.keras' # Specify img_zip model path
)
temp = 0.28 # Temperature parameter
while True:
inp = input('[Q]: ')
if inp == '[CLEAN]':
print('[Context Cleared]\n\n')
model.clean_his()
continue
# Use chat_vision for dialogue
ret = model.chat_vision(inp, temp=temp, pre_text='', pass_start_char=[])
print('\n[A]:', ret, '\n')
Important Notes:
- Vision models must use the
chat_visionmethod; do not usechat(which is only for text-only models) - You must prepare an img_zip image compression encoder model that matches the vision model
- Mismatched models will cause the model to fail to understand the meaning of encoded tokens
Image Processing Interfaces
Two new image processing interfaces have been added:
-
img2ms (for non-native vision models):
description = model.img2ms('path/to/image.jpg', temp=0.28) print(description)
-
img2ms_vision (for native vision models):
description = model.img2ms_vision('path/to/image.jpg', temp=0.28, max_shape=224) print(description)
Image Reference Syntax
In dialogue, use the following syntax to reference images:
<img>image path or URL</img>Please describe this image
The model will automatically parse the image path, extract features, and answer based on the image content.
Notes:
- Image paths should use absolute paths to ensure correct parsing
- Native vision models only support analyzing the most recent image
- img_zip technology supports referencing multiple images in the context
Image Compression to Feature Technology (img_zip)
The img_zip module provides advanced image and video compression/decompression functions based on deep learning feature extraction technology. Below are the detailed usage methods:
1. Command-line Interactive Mode
python -m xiaothink.llm.img_zip.img_zip
After running, you will enter an interactive command-line interface:
===== img_zip Image Video Compression Tool =====
Please enter .keras model path: path/to/your/imgzip_model.keras
Model loaded successfully!
Please select a function:
1. Compress image
2. Decompress image
3. Compress video
4. Decompress video
0. Exit
Please select (0-6):
2. Python Code Invocation
from xiaothink.llm.img_zip.img_zip import ImgZip
# Initialize instance
img_zip = ImgZip(model_path='path/to/your/imgzip_model.keras')
# Compress image
compressed_path = img_zip.compress_image(
img_path='input.jpg',
patch=True, # Whether to use patch processing
save_path='compressed_img' # Save path prefix
ability=0.02,# New feature in 1.2.5: Set custom compression rate to 0.02 (when ability is 0, it means not using custom compression rate). The algorithm calculates and compresses to a close size (there may be errors between theoretical calculation and actual size)
)
# Generates two files: compressed_img.npy and compressed_img.shape
# Decompress image
img_zip.decompress_image(
compressed_input='compressed_img', # Compressed file prefix
patch=True, # Whether to use patch processing
save_path='decompressed.jpg' # Output path
)
# Compress video
compressed_paths, metadata_path = img_zip.compress_video(
video_path='input.mp4',
output_dir='compressed_video', # Output directory
patch=True # Whether to use patch processing
)
# Decompress video
img_zip.decompress_video(
compressed_dir='compressed_video', # Compressed file directory
output_path='decompressed.mp4' # Output path
)
# Convert image to array and save
img_array = img_zip.image_to_array('input.jpg')
img_zip.save_image_array(img_array, 'image_array.npy')
# Load image from array
loaded_array = img_zip.load_image_array('image_array.npy')
img = img_zip.array_to_image(loaded_array)
img.save('restored.jpg')
3. Key Function Descriptions
-
Compress Image (
compress_image)patch=True: Split large images into 80x80 patches for separate processing- Outputs two files:
.npy(feature vectors) and.shape(original size information)
-
Decompress Image (
decompress_image)- Requires both
.npyand.shapefiles - Automatically restores original dimensions
- Requires both
-
Video Processing (
compress_video/decompress_video)- Automatically extracts video frames and processes them in batches
- Preserves original video frame rate and resolution information
- Uses temporary directories for intermediate file processing
4. Parameter Descriptions
| Parameter | Type | Description |
|---|---|---|
model_path |
str | Path to img_zip model (.keras file) |
patch |
bool | Whether to use patch processing (default: True) |
save_path |
str | Output file path prefix |
img_path |
str | Input image path |
video_path |
str | Input video path |
output_dir |
str | Output directory path |
output_path |
str | Output file path |
5. Processing Flow Features
-
Patch Processing:
- Automatically splits large images into 80x80 patches
- Each patch is independently encoded into feature vectors
- Preserves original size information
-
Video Processing:
- Automatically extracts frames and processes them in batches
- Preserves original video parameters (fps, resolution)
- Uses temporary directories for intermediate file processing
-
Progress Display:
- All operations come with detailed progress bars
- Displays current processing step and remaining time
-
Error Handling:
- Comprehensive exception catching mechanism
- Detailed error information prompts
6. Usage Recommendations
- For images larger than 80x80, it is recommended to use patch processing (
patch=True) - Video processing requires sufficient disk space for temporary frame files
- Ensure the input model matches the processing task
- Use absolute paths to avoid file location issues
This module is the core component of Xiaothink vision models (especially non-native ones). Based on efficient image feature representation and compression, it can enable any text-only AI model to have basic vision capabilities through fine-tuning.
Sentiment Classification Tool
The sentiment classification tool is based on loaded dialogue models and provides text sentiment tendency analysis functionality, which can quickly determine the sentiment category of input text (e.g., positive, negative, neutral, etc.).
Feature Description
- This tool is a customized interface based on Xiaothink framework (Xiaothink T6 series, etc.) models
- Implements sentiment classification based on Xiaothink framework language models without the need to load additional classification models
- Supports input of ultra-long text and returns sentiment analysis results
- It is recommended to use single-turn dialogue enhanced models, such as: Xiaothink-T6-0.15B-ST
Usage Example
from xiaothink.llm.inference.test_formal import *
from xiaothink.llm.tools.classify import *
if __name__ == '__main__':
# Initialize basic dialogue model
model = QianyanModel(
ckpt_dir=r'path/to/your/t6_model', # Model weight directory It is recommended to use _ST version models
MT='t6_standard', # Model type (must match weights)
vocab=r'path/to/your/vocab.txt', # Vocabulary path
use_patch=0 # Do not use patch processing (text-only model)
)
# Initialize sentiment classification model (depends on basic dialogue model)
cmodel = ClassifyModel(model)
# Loop input text for sentiment classification
while True:
inp = input('Enter text: ')
res = cmodel.emotion(inp) # Call sentiment classification interface
print(res) # Output sentiment analysis results
Notes
- The sentiment classification model depends on an initialized
QianyanModel; ensure the base model is loaded successfully - It is recommended to use instruction-tuned models (e.g.,
t6_standard); non-tuned models may affect classification accuracy - The output result format is: {'Positive': 0.6667, 'Negative': 0.1667, 'Neutral': 0.1667}
AI Rate Detection Tool
The AI rate detection tool is based on loaded detection models and provides text AI generation probability analysis functionality. It can accurately determine the AI generation probability of each character in the text, output the overall AI rate average, and return detailed character-level detection information, achieving comprehensive traceability analysis of text AI generation traces.
Feature Description
- This tool is a customized interface based on Xiaothink framework (Xiaothink T series, etc.) models
- Implements text AI rate analysis based on Xiaothink framework detection models without the need to load independent detection models
- Supports ultra-long text detection and batch text detection, returning multi-dimensional complete detection results
- Can output four levels of results: overall AI rate average, detection conclusion, probability statistics information, and character-level detailed information
Usage Example
if __name__ == "__main__" and 1:
# 1. Initialize detector
detector = AIDetector(
ckpt_dir=r'E:\Xiaothink Framework\Paper\ganskchat\ckpt_test_t7',
model_type='t7',
print_load_info=True
)
# 2. Detect text
test_texts = [
"This is a sentence that a car repair blogger active on mobile internet used to start many of his videos before being sued by BYD. Finally, this 'most miserable repairman in history' has received the first-instance judgment of being sued by BYD.",
"\"Isn't it,\" Grandma looked up at the osmanthus tree, her eyes filled with gentle memories, \"This was planted by your grandfather back then, almost thirty years ago. At that time, he said, planting an osmanthus tree, it will bloom in autumn, fragrant and beautiful, and when we have children, we can make osmanthus cake to eat.\"",
"These days, my heart has been quite unsettled. Sitting in the yard enjoying the cool air tonight, I suddenly thought of the lotus pond I pass by every day. In this moonlight of the full moon, it should have a different appearance. The moon gradually rose higher, and the laughter of children on the road outside the wall could no longer be heard; my wife was patting Run'er inside the house, humming a lullaby drowsily. I quietly put on my large shirt and went out the door."
]
# 3. Execute detection
for text in test_texts:
print(f"\n{'='*60}")
print(f"Detected Text: {text}")
result = detector.detect_ai_rate(text)
print(f"AI Rate (Probability Average): {result['AI Rate (Probability Average)']}")
print(f"Detection Conclusion: {result['Detection Conclusion']}")
print(f"Probability Statistics: Min={result['Probability Statistics']['Minimum Probability']} | Max={result['Probability Statistics']['Maximum Probability']}")
# Optional: Print character-level details
print("\nCharacter-level Details:")
for detail in result['Character-level Details']:
print(f" Position {detail['Character Position']}: Previous Text 「{detail['Complete Previous Text']}」→ Character 「{detail['Target Character']}」→ Probability {detail['Prediction Probability']}")
# 4. Release resources
detector.close()
Notes
- When initializing the AI rate detector, ensure
ckpt_dirpoints to the correct T7 series model weight directory; otherwise, model loading will fail - Core Accuracy Note: This tool has relatively accurate AI rate detection results for small model-generated text, which can meet the traceability needs of small model-generated content; however, it has poor AI rate detection effect for large model-generated text, and the detection results have low reference value. It is strictly prohibited to use this tool for AI determination scenarios of large model-generated content
- After detection is completed, you must call the
detector.close()method to release resources such as video memory and hardware handles to avoid memory leaks and excessive video memory usage caused by long-term operation - Character-level details are optional output items. For ultra-long text of ten thousand characters, printing these details will significantly increase output time and can be selectively printed according to actual needs
- When detecting a large number of texts in batches, it is recommended to process them in batches according to text length to avoid detection lag caused by passing too many ultra-long texts in a single batch
- Enabling
print_load_info=Truewhen loading the model allows you to view loading progress and hardware adaptation information, which is convenient for troubleshooting model loading exceptions
Xiaothink framework series model names, their corresponding MT (model architecture version), and form (model prompt input format) list:
| Model Name (by release time) | mt parameter | form parameter |
|---|---|---|
| Xiaothink-T7-ART(0.07B) | mt='t7_cpu_standard' | form=1 |
| Xiaothink-T6-0.08B | mt='t6_beta_dense' | form=1 |
| Xiaothink-T6-0.15B | mt='t6_standard' | form=1 |
| Xiaothink-T6-0.02B | mt='t6_fast' | form=1 |
| Xiaothink-T6-0.5B | mt='t6_large' | form=1 |
| Xiaothink-T6-0.5B-pretrain | mt='t6_large' | form='pretrain' |
Changelog
Version 1.4.0 (2025-02-16)
- New Module:
- Added
xiaothink.llm.inference_paddlemodule for PaddlePaddle-based inference - Supports Xiaothink-T7.5 series models with RWKV architecture
- Provides
TextGeneratorandQianyanModelclasses for PaddlePaddle
- Added
- Updated Dependencies:
- Removed TensorFlow as a required dependency (now optional)
- Added PaddlePaddle as the primary deep learning framework
- Added jieba for Chinese word segmentation
- Model Support:
- Added support for MT architectures: 't7.5_paddle_small_instruct', 't7.5_paddle_small_instruct_pro', etc.
- Supports automatic device selection (CPU/GPU) based on memory usage
Version 1.3.2 (2025-12-27)
- Updated Interfaces:
- Added "AI Rate Detection" interface based on Xiaothink-T series models.
- New Models:
- Added support for MT architectures "t7" and "t7_cpu_standard" in the Xiaothink-T7 series models.
Version 1.3.1 (2025-10-31)
- Updated Interfaces:
- Added custom input shape (must be supported by the corresponding model) for vision-related interfaces instead of the fixed 80803 in previous versions
- The ImgZIP command-line interface also added custom input shape (must be supported by the corresponding model) instead of the fixed 80803 in previous versions, and added comprehensive quality scores based on SNR, PSNR, and SSIM.
Version 1.3.0 (2025-10-17)[Yanked]
- New Models:
- Added support for the Xiaothink-T7 series model architecture.
Version 1.2.5 (2025-09-02)
- Updated Interfaces:
- Added "custom compression rate" function to the ImgZIP command-line interface, supporting other compression rates beyond the model's native compression rate (implemented based on calculating and scaling the original image).
Version 1.2.4 (2025-08-30)
- Updated Interfaces:
- Updated the import method of ImgZIP-related interfaces in the documentation to: from xiaothink.llm.img_zip.img_zip import ImgZip
Version 1.2.3 (2025-08-30)
- New Features:
- Added Xiaothink-T6-0.02B series models (MT='t6_fast')
- Added Xiaothink-T6-0.5B series models (MT='t6_large')
- Added support for form='pretrain' in the model.chat method. For instruction-tuned models in the T6 series, form=1 should be used; for pre-trained models, form='pretrain' should be used
Version 1.2.2 (2025-08-18)
- New Features:
- Added sentiment classification tool to implement text sentiment tendency analysis through
ClassifyModel - Added
xiaothink.llm.tools.classifymodule to support sentiment classification based on basic dialogue models - Provided
cmodel.emotion(inp)interface to return real-time text sentiment results
- Added sentiment classification tool to implement text sentiment tendency analysis through
Version 1.2.1 (2025-08-16)
- New Models:
- Added Xiaothink-T6-0.15B series models (MT='t6_standard')
Version 1.2.0 (2025-08-08)
-
Breakthrough Innovation:
- Added support for native vision models using an innovative dual-vision solution
- Dual-path processing of image compression to feature tokens (img_zip) + native vision encoder
- Retains multi-image context understanding capability while achieving single-image detail analysis
-
New Interfaces:
model.chat_vision: Specialized dialogue interface for vision modelsmodel.img2ms: Image description interface for non-native vision modelsmodel.img2ms_vision: Image description interface for native vision models (supports max_shape parameter)
-
Module Expansion:
- Added
xiaothink.llm.img_zip.img_zipcommand-line tool - Supports compression and decompression of images and videos
- Provides rich parameters to adjust compression quality
- Added
-
Usage Guidelines:
- Vision models must use the
chat_visionmethod - Must use a matching img_zip encoder model
- Image paths should use absolute paths
- Vision models must use the
Version 1.1.0 (2025-08-02)
-
New Features:
- Added
img2msandms2imginterfaces to achieve high compression ratio lossy compression of images - Supports converting images into AI-readable feature tokens
- Extended dialogue models to support multimodal input (image + text)
- In test_formal, it supports converting feature tokens generated by multimodal AI into images and saving them to the system temporary folder by default.
- Added
-
Technical Upgrades:
- Based on Xiaothink framework's self-developed img_zip technology
- Supports intelligent compression of 80x80x3 image patches
- When outputting 96 feature values, combined with .7z algorithm, it can achieve an ultra-high compression ratio of 10%
-
Usage Method:
- Insert images using the
<img>{image_path}</img>tag in dialogue - Need to specify the img_zip model path when initializing the model
- Supports multimodal dialogue (image description, image Q&A, and other scenarios)
- Insert images using the
The above covers the main functions and usage methods of the Xiaothink Python module.
If you have any questions or suggestions, please feel free to contact us: xiaothink@foxmail.com.
Project details
Release history Release notifications | RSS feed
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 xiaothink-1.4.0.tar.gz.
File metadata
- Download URL: xiaothink-1.4.0.tar.gz
- Upload date:
- Size: 120.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d04aa5f8e80bed0fa42b97bc7f6ba1c44b262845c4e903fcef6ce866a9869526
|
|
| MD5 |
80b00ec952b12b1f2bbfb96bb11349d5
|
|
| BLAKE2b-256 |
9d177cb5a09153de0ceb8ba5724a8cd0a9ca715ee4599e1cbae5bbedaddb7aa0
|
File details
Details for the file xiaothink-1.4.0-py3-none-any.whl.
File metadata
- Download URL: xiaothink-1.4.0-py3-none-any.whl
- Upload date:
- Size: 120.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5819b2f24ab567cf08e389ca349828190e791c8b6bdf9bdfbceaeacd93ba0795
|
|
| MD5 |
924aefd72b02d9b39d1149a3da52b659
|
|
| BLAKE2b-256 |
cde76eb0963e8e0564d82dc8193a1d4e265210e95c6407a8cce025abac6aef00
|