Promptulate

Latest version: v1.16.7

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

Scan your dependencies

Page 4 of 8

1.11.2

👋 Hello and welcome to the release notes for Promptulate v1.11.2! We're excited to share some new updates that we believe will enhance your experience with Promptulate.

For detailed information, please visit our official documentation: [Promptulate Documentation](https://undertone0809.github.io/promptulate/#/)

To see the code, report issues, or contribute, check out our GitHub repository: [Promptulate on GitHub](https://github.com/Undertone0809/promptulate)

What’s Changed

* fix some bugs and add baseurl to openai (321) ruanrongman
* arxiv's Chinese prompt was changed to English (317) longsihua2026

:pencil: Documentation

* docs: optimize docs (324) Undertone0809

:arrow_up: Dependencies updates

* :arrow_up: bump actions/cache from 3.3.2 to 3.3.3 (318) dependabot
* :arrow_up: bump abatilo/actions-poetry from 2 to 3 (319) dependabot

:busts_in_silhouette: List of contributors

Undertone0809, dependabot, dependabot[bot], longsihua2026 and ruanrongman

1.11.1

👋 Hello and welcome to the release notes for Promptulate v1.11.1! We're excited to share some new updates that we believe will enhance your experience with Promptulate.

For detailed information, please visit our official documentation: [Promptulate Documentation](https://undertone0809.github.io/promptulate/#/)

To see the code, report issues, or contribute, check out our GitHub repository: [Promptulate on GitHub](https://github.com/Undertone0809/promptulate)

What’s Changed

:rocket: Features

* optimize MessageSet init function (316) Undertone0809

:pencil: Documentation

* docs: add custom LLM docs (316) Undertone0809

:busts_in_silhouette: List of contributors

Undertone0809

1.11.0

👋 Hello and welcome to the release notes for Promptulate v1.11.0! We're excited to share some new updates that we believe will enhance your experience with Promptulate.

For detailed information, please visit our official documentation: [Promptulate Documentation](https://undertone0809.github.io/promptulate/#/)

To see the code, report issues, or contribute, check out our GitHub repository: [Promptulate on GitHub](https://github.com/Undertone0809/promptulate)

See the awesome custom Tool usage: https://undertone0809.github.io/promptulate/#/modules/tools/custom_tool_usage?id=custom-tool

Now you can define your custom tools as follows:

python
import promptulate as pne


def web_search(keyword: str) -> str:
"""search by keyword in web.
Args:
keyword: keyword to search

Returns:
str: search result
"""
return "result"


agent = pne.ToolAgent(tools=[web_search])
resp: str = agent.run("What's the weather in NewYork tomorrow?")



What’s Changed

* pref: optimize logger (286) Undertone0809
* pref: optimize calculator (285) Undertone0809
* Revert "fix agent thought bug and update the iot tool prompt" (269) ruanrongman
* fix agent thought bug and update the iot tool prompt (268) ruanrongman
* fix: error in get litellm response (248) Undertone0809

:rocket: Features

* feat: add tool schema (308) Undertone0809
* fix agent thought bug and update the iot tool and the agent prompt (270) ruanrongman
* pref: optimize calculator, mock for llm and tool (278) Undertone0809
* feat: support pydantic v2 (267) Undertone0809

:wrench: Fixes & Refactoring

* fix agent thought bug and update the iot tool and the agent prompt (270) ruanrongman
* optimize import (252) Undertone0809

:package: Build System & CI/CD

* feat: add tool schema (308) Undertone0809

:pencil: Documentation

* feat: add tool schema (308) Undertone0809
* pref: optimize calculator, mock for llm and tool (278) Undertone0809

:arrow_up: Dependencies updates

* feat: add tool schema (308) Undertone0809
* :arrow_up: bump litellm from 1.15.8 to 1.16.12 (302) dependabot
* :arrow_up: bump sqlalchemy from 2.0.23 to 2.0.24 (288) dependabot
* :arrow_up: bump cushy-storage from 1.3.0 to 1.3.3 (290) dependabot
* :arrow_up: bump ruff from 0.1.8 to 0.1.9 (262) dependabot
* :arrow_up: bump frozenlist from 1.4.0 to 1.4.1 (235) dependabot
* :arrow_up: bump httpx from 0.25.2 to 0.26.0 (256) dependabot
* V1.11.0/add template jinja2 (251) Undertone0809

:busts_in_silhouette: List of contributors

Undertone0809, dependabot, dependabot[bot] and ruanrongman

1.10.1

👋Hi there, this is promptulate v1.10.1 release notes. We have updated some interesting features and look forward to your experience.

Official documentation: [https://undertone0809.github.io/promptulate/#/](https://undertone0809.github.io/promptulate/#/)
Github repo: [https://github.com/Undertone0809/promptulate](https://github.com/Undertone0809/promptulate)

What’s Changed

:rocket: Features

* add json schema formatter and pne logger filter (247) Undertone0809
* pref: add openai parameters (240) Undertone0809
* pref: change openai max token length (238) Undertone0809
* pref: add additional_kwarg of openai (219) Undertone0809

:wrench: Fixes & Refactoring

* fix: change openai max token length (239) Undertone0809

:pencil: Documentation

* add json schema formatter and pne logger filter (247) Undertone0809
* pref: add additional_kwarg of openai (219) Undertone0809

:arrow_up: Dependencies updates

* :arrow_up: bump ruff from 0.1.7 to 0.1.8 (233) dependabot
* :arrow_up: bump litellm from 1.12.0 to 1.12.3 (217) dependabot
* :arrow_up: bump distlib from 0.3.7 to 0.3.8 (225) dependabot
* :arrow_up: bump pytest-html from 3.2.0 to 4.1.1 (211) dependabot
* :arrow_up: bump actions/setup-python from 4 to 5 (202) dependabot

:busts_in_silhouette: List of contributors

Undertone0809, dependabot and dependabot[bot]

1.10.0

👋Hi there, welcome to enjoy new feature of `pne.chat()`

https://undertone0809.github.io/promptulate/#/modules/chat_usage?id=chat

:rocket: Features

* feat: add chat tool (215) Undertone0809
* ernie bot 4.0 (168) ruanrongman

:wrench: Fixes & Refactoring

* feat: add chat tool (215) Undertone0809
* ernie-bot add native stop and fix some bugs (173) ruanrongman

:package: Build System & CI/CD

* docs: update docs (218) Undertone0809
* build: using poetry to publish pkg (216) Undertone0809

:pencil: Documentation

* docs: update docs (218) Undertone0809
* feat: add chat tool (215) Undertone0809

:arrow_up: Dependencies updates

* feat: add chat tool (215) Undertone0809
* :arrow_up: bump aiohttp from 3.9.0 to 3.9.1 (174) dependabot
* :arrow_up: bump cushy-storage from 1.2.5 to 1.3.0 (209) dependabot
* :arrow_up: bump duckduckgo-search from 3.9.6 to 3.9.9 (183) dependabot
* :arrow_up: bump pytest from 6.2.5 to 7.4.3 (117) dependabot
* :arrow_up: bump litellm from 1.4.0 to 1.6.0 (171) dependabot

:busts_in_silhouette: List of contributors

Undertone0809, dependabot, dependabot[bot] and ruanrongman

1.9.1

What’s Changed

* update litellm and langchain version in poetry (151) Undertone0809

:rocket: Features

* fix: error in client chat (149) Undertone0809

:wrench: Fixes & Refactoring

* fix: error in client chat (149) Undertone0809
* fix: error in webagent (146) Undertone0809

:arrow_up: Dependencies updates

* :arrow_up: bump langchain from 0.0.324 to 0.0.332 (129) dependabot

:busts_in_silhouette: List of contributors

Undertone0809, dependabot and dependabot[bot]

Page 4 of 8

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.