Predacons

Latest version: v0.0.129

Safety actively analyzes 723990 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 5

0.0.123

* added support for gguf model files

python
model = predacons.load_model(model_path=model_id, gguf_file=gguf_file)
tokenizer = predacons.load_tokenizer(model_id, gguf_file=gguf_file)
chat = [
{"role": "system", "content": "you are a travel planner who plans trips for people. and list down the places to visit at that place"},
{"role": "user", "content": "I want to plan a trip to new delhi. Can you help me with that?"},
]
predacons.chat_generate(model = model,
sequence = chat,
max_length = 200,
tokenizer = tokenizer,
trust_remote_code = True,
do_sample=True,
)


What's Changed
* added default chat template by shouryashashank in https://github.com/Predacons/predacons/pull/36


**Full Changelog**: https://github.com/Predacons/predacons/compare/v0.0.122...v0.0.123

0.0.122

Changelog
Added
- Introduced a new chat generation feature.
- Added `predacons.chat_generate` method to generate chat responses using trained models.
- Example usage:
python
chat = [
{"role": "user", "content": "Hey, what is a car?"}
]
chat_output = predacons.chat_generate(
model=model,
sequence=chat,
max_length=50,
tokenizer=tokenizers,
trust_remote_code=True
)


Updated
- README.md to include documentation and example usage for the new chat generation feature.

What's Changed
* Feature/chat generation by shouryashashank in https://github.com/Predacons/predacons/pull/35


**Full Changelog**: https://github.com/Predacons/predacons/compare/v0.0.121...v0.0.122

0.0.121

Changelog
Added
- Introduced a new chat generation feature.
- Added `predacons.chat_generate` method to generate chat responses using trained models.
- Example usage:
python
chat = [
{"role": "user", "content": "Hey, what is a car?"}
]
chat_output = predacons.chat_generate(
model=model,
sequence=chat,
max_length=50,
tokenizer=tokenizers,
trust_remote_code=True,
apply_chat_template=True
)


Updated
- README.md to include documentation and example usage for the new chat generation feature.


What's Changed
* added docs by shouryashashank in https://github.com/Predacons/predacons/pull/31
* added chat generation by shouryashashank in https://github.com/Predacons/predacons/pull/33
* Feature/chat generation by shouryashashank in https://github.com/Predacons/predacons/pull/34


**Full Changelog**: https://github.com/Predacons/predacons/compare/v0.0.120...v0.0.121

0.0.120

What's Changed
* Create LICENSE-COMMERCIAL-PERPETUAL by shouryashashank in https://github.com/Predacons/predacons/pull/29
* added read csv by shouryashashank in https://github.com/Predacons/predacons/pull/23
* Feature/add csv support by shouryashashank in https://github.com/Predacons/predacons/pull/30
New features
* Added support for csv and json file types
* Added full support for hugging face datasets
* Added automatic formatting function preprocessing function generation for any type of data
* Added proper documentation for all the methods

**Full Changelog**: https://github.com/Predacons/predacons/compare/v0.0.119...v0.0.120

0.0.119

What's Changed
* Feature/generate fix for windows by shouryashashank in https://github.com/Predacons/predacons/pull/28


**Full Changelog**: https://github.com/Predacons/predacons/compare/v0.0.118...v0.0.119

0.0.118

What's Changed
* Create FUNDING.yml by shouryashashank in https://github.com/Predacons/predacons/pull/22
* added try block for fast gen by shouryashashank in https://github.com/Predacons/predacons/pull/26
* Feature/generate fix for windows by shouryashashank in https://github.com/Predacons/predacons/pull/27


**Full Changelog**: https://github.com/Predacons/predacons/compare/v0.0.117...v0.0.118

Page 2 of 5

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.