Skip to main content

Simple Open WebUI utilities to be added to and reused across local OWUI tools

Project description

OWUI Utilities

Package to add in reusable behavior for built-in OWUI tools

Motivation

Develop utility functions to be reused across OWUI built-in tools. Some tools are more appropriately deployed as external tool servers (openapi/MCP), but some tools benefit from built-in events that can interact via the UI during execution. Utilities to make these tools better can be built once and reused across tools.

Currently just a single utility exists, if more utilities are added then specific readmes can be moved out to individual sections.

Param Confirm: Background

Tool calls in OWUI can be great, but they are executed at the discretion of the LLM. The LLM will parse out the necessary arguments and decide whether to make the tool call. This has some potential downsides:

  1. This could be detrimental if the tool call is sending information to an external api that the user did not intend
  2. LLm could be performing an action the user may not have intended and these tool calls can have real effects, ie send emails, databases changes etc...
  3. OWUI provides very little insight for users as to what tool is called and with what arguments

We can mitigate this with reusable function decorators. The parameter_confirm decorator is used to alert the user to the current tool call and what arguments are being passed to the tool call. This could be expanded for argument collection when parsing by llm proves to not work, and we could be provide more info on what is returned by the tool call. There is room for lots of different utilities.

Example

image The above example shows a user asking to make a sentence from a few words. The description of the tool allows the LLM to decide that this is the proper tool to call, and the description of the arguments lets the LLM parse the user sentence to get what it needs. Rather than executing the tool call, OWUI asks if the user would like to execute the tool call and alerts the user as to which arguments are being used. If the user confirms then the tool executes, otherwise it does not. This is a trivial example but illustrates the usage.

Usage

These are intended for "built-in tools", i.e. tools installed in OWUI the run client-side in the browser. This approach relies on events which are only for local tools, not for external MCP/OpenAPI tool servers.

These function can be exposed in a few ways.

  1. Code can be packaged and published to pypi with something like twine. This is useful to make the local tools more concise. Then simply add as a requirement to the local tool with the proper module docstring section such as below. This is then installed on the backend when the tool is saved. Currently, the Gitlab CI/CD pipeline script publishes to the Gitlab package registry and CSDE Artifactory.
python -m build
python -m twine upload dist/*

tool header

requirements: pydantic, owui_tools
  1. The other options is include the entirety of the decorator in the code of the local tool.

Functions that wish use this simply need to import the function and decorate themselves with it.

from owui_tools import parameter_confirm
...<some stuff>
class Tools:
    <init and valves and stuff>
    @parameter_confirm(filter_args=True)
    def <function_name>(
        self,
        <arg1>: <type>,
        <arg2>: <type>,
        <arg3>: <type>,
        __event_emitter__: Callable[[dict], Awaitable[None]],
        __event_call__: Callable[[dict], Awaitable[None]],
        __user__: dict = {},
    ) -> str:
    """
    Normal OWUI function and param descriptions
    """
    <Normal function defintion>

If the tool itself does not need to use the event functions they should still be included for the decorator to use. A full example can be seen in the test directory.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

owui_utilities-0.0.4.tar.gz (3.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

owui_utilities-0.0.4-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

Details for the file owui_utilities-0.0.4.tar.gz.

File metadata

  • Download URL: owui_utilities-0.0.4.tar.gz
  • Upload date:
  • Size: 3.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.4

File hashes

Hashes for owui_utilities-0.0.4.tar.gz
Algorithm Hash digest
SHA256 270a18b51a650692e987b5fe9a2a6cce00c225073a317190c272d59b321fff5f
MD5 e529f04c702e47778a774707010b5aed
BLAKE2b-256 90e5ad1f7d9e1b45cce23de2b19e468cb37d761af642aba8c15f28055f052d73

See more details on using hashes here.

File details

Details for the file owui_utilities-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: owui_utilities-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 4.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.4

File hashes

Hashes for owui_utilities-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 04f689b066923448f29b774367475c703f7c70762f5844db59f8f8d2b9216237
MD5 d90c595667d5ff1757810f4a8d9c4b05
BLAKE2b-256 5861c69817539b3be7393824cf31c997b7f18326e5be5b54f6a3abdf447511c1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page