Skip to main content

No project description provided

Project description

llm-tool

A simple Python module to automatically turn your functions into definitions that can be used for LLM tool calling. Built with Rust for blazing fast string parsing.

Instalation

pip install llm-tool

Usage

Just use the @tool() decorator to automatically turn a function into a tool definition.

from llm_tool import tool

@tool()
def test_func(graph_data: List[float], portfolio_name: str, description: str = "This is a description", marketValue: float = 14_000) -> List[float]:
    """
    Generate an image with the given data.
    
    :param graph_data: List of data points to be plotted on the graph.
    We only need the y-axis values.
    The x-axis values will be calculated based on the length of the list.
    All values are normalized to fit the graph region.
    
    :param portfolio_name: Name of the portfolio.
    :param description: Description of the portfolio.
    :param marketValue: The marketValue of the portfolio.
    
    :return: Processed Image with the given data drawn.
    """
    pass

Get the definition:

definition = test_func.definition

You can still use the function:

test_func(...)

Definitions are generated based on the format specified by the Berkeley Function-Calling Benchmark.
The definition for the function above will look like this:

{
  'type': 'function',
  'function': {
    'name': 'test_func',
    'description': 'Generate an image with the given data.\n\nReturn Type: `None`\n\nReturn Description: Processed Image with the given data drawn.',
    'parameters': {
      'type': 'object',
      'properties': {
        'graph_data': {
          'type': 'List',
          'description': 'List of data points to be plotted on the graph.\n    We only need the y-axis values.\n
    The x-axis values will be calculated based on the length of the list.\n    All values are normalized to fit the graph region.'
        },
        'portfolio_name': {
          'type': 'str',
          'description': 'Name of the portfolio.'
        },
        'description': {
          'type': 'str',
          'description': 'Description of the portfolio. Default Value: `This is a description`'
        },
        'marketValue': {
            'type': 'float',
            'description': 'The marketValue of the portfolio. Default Value: `14000`'
        }
      },
    'required': ['graph_data', 'portfolio_name']
    }
  }
}

Use with methods

fomr llm_tool import tool

class TestClass:
    
    @tool(self)
    def test_method(self, a: int = 0) -> None:
        '''
        This is a test method.

        :param a: This is a test parameter.
        '''
        pass

# get the definition from the class
definition = TestClass.test_method.definition
# or from an object
t = TestClass()
definition = t.test_method.definition

Groq API Example

from groq import Groq
from llm_tool import tool

client = Groq(api_key=GROQ_KEY)

@tool()
def get_user_data(userId: str) -> Dict[str, str]:
  """
  Fetch user data from database.

  :param userId: The user's id.
  :return: Dictionary with user's data
  """
  pass

@tool()
def create_user(username: str, pass: str, created_at: str = datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")) -> None:
  """
  Create a new user

  :param username: user username
  :param pass: user password
  :param create_at: date user was created
  """
  pass

tools = [
  get_user_data.definition,
  create_user.definition,
]

response = client.chat.completions.create(
    messages=messages,
    
    model="llama-3.1-70b-versatile",
    
    tools=tools,
    tool_choice="auto",
)

tool_calls = response.choices[0].message.tool_calls

Scope

The @tool() decorator can work for functions with less documentation. Everything in the documentation and typing of the function is optional except for parameter type hints.

The following will raise a DocStringException:

@tool()
def test(a) -> None:
  pass

But all of the following are legal:

# Just a description, no return typing hint or parameter description.
@tool()
def test(a: int):
  """
  This is a description.
  """
  pass

# No docstring
@tool()
def test(a: int):
  pass

# Return Type Hint without return deswcription
@tool()
def test(a: int) -> None:
  pass

# Return description without return type hint
@tool()
def test(a: int):
  """
  :return: test return description
  """
  pass

# Docstring with parameter descriptions and no return description
def test(a: int) -> None:
  """
  Description
  :param a: another description
  """
  pass

# Or any combination of the above

Configuration

The @tool() decorator allows for configuration that enforces more rules.

  • desc_required: if True it makes descriptions for all parameters mandatory, raises DocStringException otherwise. Default is False
  • return_required: if True it makes the return type hint and return description mandatory, raises DocStringException otherwise. Deafult is False

There are two ways the @tool() decorator:

  • Individually
@tool(desc_required=True, return_required=False)
def test(a: int) -> int:
  """
  :param a: description
  :return: return description
  """
  pass

@tool(desc_required=False, return_required=False)
def test(a: int) -> int:
  """
  :return: return description
  """
  pass
  • Globally
from llm_tool import GlobalToolConfig

GlobalToolConfig.desc_required = True
GlobalToolConfig.return_required = True

@tool()
def test(a: int) -> int:
  """
  :param a: description
  :return: return description
  """
  pass

# ignore global config
@tool(desc_required=False, return_required=False)
def test2(a: int) -> None:
  pass

Support

Currently only docstrings in the reST format are supported, but support for more doscstring formats will be added in the future.

Roadmap

  • - [ ]
Add support for Union types
  • - [ ]
Add support for writing subtypes (e.g. `List[int]` instead of just `List`)
  • - [ ]
Support for more doscstring formats

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

llm_tool-1.0.7.tar.gz (12.1 kB view details)

Uploaded Source

Built Distributions

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

llm_tool-1.0.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

llm_tool-1.0.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

llm_tool-1.0.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

llm_tool-1.0.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (964.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (993.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (914.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (950.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

llm_tool-1.0.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

llm_tool-1.0.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

llm_tool-1.0.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

llm_tool-1.0.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (963.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (993.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (914.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (950.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

llm_tool-1.0.7-cp312-none-win_amd64.whl (703.0 kB view details)

Uploaded CPython 3.12Windows x86-64

llm_tool-1.0.7-cp312-none-win32.whl (635.5 kB view details)

Uploaded CPython 3.12Windows x86

llm_tool-1.0.7-cp312-cp312-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

llm_tool-1.0.7-cp312-cp312-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

llm_tool-1.0.7-cp312-cp312-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

llm_tool-1.0.7-cp312-cp312-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

llm_tool-1.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (961.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

llm_tool-1.0.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

llm_tool-1.0.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (992.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

llm_tool-1.0.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (872.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

llm_tool-1.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (912.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

llm_tool-1.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (948.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

llm_tool-1.0.7-cp312-cp312-macosx_11_0_arm64.whl (796.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

llm_tool-1.0.7-cp312-cp312-macosx_10_12_x86_64.whl (840.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

llm_tool-1.0.7-cp311-none-win_amd64.whl (703.0 kB view details)

Uploaded CPython 3.11Windows x86-64

llm_tool-1.0.7-cp311-none-win32.whl (635.9 kB view details)

Uploaded CPython 3.11Windows x86

llm_tool-1.0.7-cp311-cp311-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

llm_tool-1.0.7-cp311-cp311-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

llm_tool-1.0.7-cp311-cp311-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

llm_tool-1.0.7-cp311-cp311-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

llm_tool-1.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (962.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

llm_tool-1.0.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

llm_tool-1.0.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (992.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

llm_tool-1.0.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

llm_tool-1.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (912.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

llm_tool-1.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (949.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

llm_tool-1.0.7-cp311-cp311-macosx_11_0_arm64.whl (796.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

llm_tool-1.0.7-cp311-cp311-macosx_10_12_x86_64.whl (840.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

llm_tool-1.0.7-cp310-none-win_amd64.whl (703.1 kB view details)

Uploaded CPython 3.10Windows x86-64

llm_tool-1.0.7-cp310-none-win32.whl (636.0 kB view details)

Uploaded CPython 3.10Windows x86

llm_tool-1.0.7-cp310-cp310-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

llm_tool-1.0.7-cp310-cp310-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

llm_tool-1.0.7-cp310-cp310-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

llm_tool-1.0.7-cp310-cp310-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

llm_tool-1.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (962.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

llm_tool-1.0.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

llm_tool-1.0.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (993.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

llm_tool-1.0.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

llm_tool-1.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (912.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

llm_tool-1.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (949.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

llm_tool-1.0.7-cp310-cp310-macosx_11_0_arm64.whl (796.5 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

llm_tool-1.0.7-cp39-none-win_amd64.whl (703.3 kB view details)

Uploaded CPython 3.9Windows x86-64

llm_tool-1.0.7-cp39-none-win32.whl (636.2 kB view details)

Uploaded CPython 3.9Windows x86

llm_tool-1.0.7-cp39-cp39-musllinux_1_2_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

llm_tool-1.0.7-cp39-cp39-musllinux_1_2_i686.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

llm_tool-1.0.7-cp39-cp39-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

llm_tool-1.0.7-cp39-cp39-musllinux_1_2_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

llm_tool-1.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (964.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

llm_tool-1.0.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

llm_tool-1.0.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (993.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

llm_tool-1.0.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (873.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

llm_tool-1.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (913.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

llm_tool-1.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (949.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

llm_tool-1.0.7-cp39-cp39-macosx_11_0_arm64.whl (797.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file llm_tool-1.0.7.tar.gz.

File metadata

  • Download URL: llm_tool-1.0.7.tar.gz
  • Upload date:
  • Size: 12.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for llm_tool-1.0.7.tar.gz
Algorithm Hash digest
SHA256 db915843d5593d6adf70b0b496b64eedc99d9df9aedb909e443771456da80ddf
MD5 55bdb249f00045470f4ee896581fb189
BLAKE2b-256 3ec300bff7a21c3c70b49053f5d71c19c5dbf4c5d294958a93882f299a424d22

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1030c3e4485ce262eaedc7d54a7abc78ca690424ded2eef63446544e2d8c7fe9
MD5 374e4565cde276c1ba3a591acc306824
BLAKE2b-256 8d8ffc6e46d202db71be3992121c1bd51409007b5e721a3e80b8821ee2383efd

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d37196547ee36157afc3bf2709ae2cd5d168e916beff9f52a21cb6c9404d57f1
MD5 504d9fff30d6d6adc1901c29ebf65df4
BLAKE2b-256 514112f168a6b4e1deca33870513d4d4ad940e74779fcd3120289f368e54d04d

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 986f8c050e71e28333b9ac611a0a6d06c4f4cca9b30f05fbddb20fdd3eed4e5b
MD5 f2e1a51a4ab3e5f7b86c4c9484f5022b
BLAKE2b-256 6ea15cfd1739d7744cff40fb121e610abe39a1d6f4c360b0fa8efbd16b55fc76

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13055e74c1ec5c23f3ef962e2d5c637da787739d88e756b73692d1f01965ee6f
MD5 2a50326b268aa626e2bb4cd6a1b39cb3
BLAKE2b-256 bd2f5e082b673187e0eeeb370e6d061c2ab23efefb748b5d6d7eda84df006c4c

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1dd0682d022c2be0ef53cefe9fc6970c4dc2aea964959dbcfe7bc81c7bd5c2bd
MD5 f7949b1b9bb6a919299562e03f8a3e91
BLAKE2b-256 03dc8b12d624b1eca7e363494928548021cbec960f35d2f2c1283997cb4a9c40

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b9ff40242b257050ca0e835fd3d0e30243f713daac12e2194200d94c0331e5f
MD5 24c4eb013d82d5303b98c6a5749ec2b7
BLAKE2b-256 a96f331dd0b27c24937869671fa5a292adca4e6c3b401ea5d6d334c9f189ac11

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2389cdbb4b562763b41f7866dd8660536346a5bf46f6b444ddee29031ec0a595
MD5 a6364a782e45db80e74fc50e0a2013dc
BLAKE2b-256 f40972bb06dcc2eb1a8973fd8ff6c90575ce35d3c41ddfdf352e97263820b5a7

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2a4597bb8841737e3f4b16881a06965778bc597ca9cafd4eb92a272129fab07
MD5 7aaa10c2a2cc0e2fc1974f5336f5960f
BLAKE2b-256 1e90f081788225bbec8832778912642c7cbf4a5660102c41d8283da7f4f40550

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 195ac7e03997d7056957a23f90c05ec1601398701eb8b85c4aa1acc5d8db2cee
MD5 3374ee9d01554cd8e0475694ebfcebf2
BLAKE2b-256 b40e2ef1c8057ff992cdf79fab7d357a8aa4fa09ce92fe93bf89014943d6515b

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 602ea96d88e700ebc8766a704219b1e9e5fc255477e2dd94130640ec651973e2
MD5 b6cd34d8ca6a82c79dc9c59ba048f2a6
BLAKE2b-256 a0f95aced0463ef18d007a08ac1e07f38819f3858071cdf168770cd430ea916f

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69553c23ce6b99501ef04c5730765f0f4e7aa7aecef7ffc34987e282b27dbcb5
MD5 11e46d7410525e439cae48546b965162
BLAKE2b-256 399bffbfb912db14236d5d9d47ea0c62df6a190467cec529dc69f632323cf922

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eca9358e6ced0e7a6492e733506b491360beacbbdd2d8027003a83127d5c3cf8
MD5 0ae854aef1618750ebd8cffceebdb090
BLAKE2b-256 7085d6aff22b4d8f5bd28121eae2335bd156abc3d204ca8bf4de0f3392ad2dbb

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 044ed6374308fb8503231c5341e8ed61d2a14bf024606a4615abb01eedc09829
MD5 20ae7c6db16d85346f8fdb8c1a128e6f
BLAKE2b-256 2330b21b1347cf05e2e79b68890cf1209ecda3e87ae21ae15875d764655f7df7

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c878a16f214e869d5bc964b3378c1c95c69cafae01de73ba1a7cc07b2af95e3
MD5 94bef736efe7c11c3e2982a98d2c7cba
BLAKE2b-256 842c0b60f21e72fd1b38c7f78ad2924fc49cfa204da17ae09d2c41185deae5d8

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a70c5f020c3b2af6e6b31d0189dafa14bcd9cd13dc5f9fd75b3052fdc192f5d8
MD5 b076fda97b1dbed38a7a2d789629ed5b
BLAKE2b-256 697ca3744b7bda6a8f27c86ed8a5fa64859a8ce5d3341b1a1d16d3de248e033f

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e04ecb47e98483693749714df9fb680ab7f8ae37f97287a428bf345c98bf07e
MD5 499470096a20aadbc4710269f4c2cb09
BLAKE2b-256 9adfe438a64b8f29174efd14abd382974e8bdf59ff0f10bbfbb646a1432cd8c8

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 040b809c6d6db887580e156b38c535bfbde1866e30776243f08a8c872d88a8c3
MD5 32fcd280c14179f4b2124cab1d6b88d3
BLAKE2b-256 882830b56e77af8fdc998b0beb877279ce683f9986e8bc319adac935e828d1c3

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 afdc752235b90807300d725b0d5bc5a2730865a72fbde06e4a06bf81bd326ed2
MD5 3314fc94f1b920ea6e7387acff7e7333
BLAKE2b-256 e79fb32afae42a4b0475b26f2fed3f96e0151f984319e01db46312c2a7057fa5

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f20807fd32589cab2e150c5620d46b472f73d412926848d8e5061a09b5f0a6c2
MD5 ff054fd34c64fd9f0d40b63a7dc8c5bd
BLAKE2b-256 e9cb1caa551107d044207f90f4c443462d393146d25d1b45b3499a96bbeb385a

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 25cbd09600b80394e176e3dfc367e1e496780cddc28943d4a6afa4780360fe0c
MD5 90c0a5190b4ad7831dfa3e0cdc330c73
BLAKE2b-256 378b495aeb780f2fcc4381d1d7c68cc54954964c842543a1b02bba28bbf03411

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp312-none-win_amd64.whl.

File metadata

  • Download URL: llm_tool-1.0.7-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 703.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for llm_tool-1.0.7-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 6c6a562310001412fa2b6efd4add8b2695b75ed0f47ee8e69c3c138507ac1ebf
MD5 550200c72392d094f031e879e54bc7d6
BLAKE2b-256 7e3c00066bf6640677fad57a6a06deada3b6df2a5349a91bc976c31ca60df8d8

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp312-none-win32.whl.

File metadata

  • Download URL: llm_tool-1.0.7-cp312-none-win32.whl
  • Upload date:
  • Size: 635.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for llm_tool-1.0.7-cp312-none-win32.whl
Algorithm Hash digest
SHA256 6fdf4faacc2a1daa45a9af57c7f2e785a75fc9867c3dea0c65beb73730de0f08
MD5 5829b053508b8daf9708c8292ed403c2
BLAKE2b-256 cdfa6a3f06d265d38478fb7084abce0bc1a977558195eadd691d5d67c2a156d3

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 da1a7384e4495b19c13f14e4f54f4b2c2bbf1eb1c920e12dc70765ababbd4b70
MD5 7e8e4bb7edaea79d3316c495232afc59
BLAKE2b-256 5b2b5e495bac8a912a66d1b00ea593400f6a20e482e2f4f7ba7a921385ddec5a

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3c02d7c55bf67e3b7b01f3b7ef47c819892bfb7871203ff4f623c21c6ec5dcc9
MD5 7e84510707a90eee4c39cce4f110f987
BLAKE2b-256 ffb17700584def1c6c1180c9ca4fe7eadedce5664b2906fb02f56c1013fd2b67

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c6c75c22288bd234c067db28e00cb8f7f9990bc0a3ee32bf903483d23f137f2
MD5 3d556476dcabe1e84fef15ec9bae6c6f
BLAKE2b-256 57aa771326a7af5ad949bcc9d7c6f06157b73e062a1fdc81b3795d47eb5aeb58

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f2be0fbc90b2fd3482d2f177dba1ae307db2b1a6d0dfb3ad2aa27ab9156a775
MD5 9cfc1603292f3dd6a1497dacf5795846
BLAKE2b-256 90258fabc7568244b670d9b89ce8f893e58ca8e421bfb22903a8e463b42f6ac6

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 763a530a0504d813c46a4241355d95171a90c6625d701321573fd942c6f8c142
MD5 1363f310367b594cd08128b4ea49da16
BLAKE2b-256 47d06cbd3c65554e5ba558faaf3e7eb5186fca950542789ba79a418766fdec81

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab02e20fef0231fbbe8cc7a91f09f73a9d868f92bfa8ca50918a85e2d6fd66d8
MD5 d7098953a2828485e79ff883a5a20e34
BLAKE2b-256 a17c894e5fe21184afb5a318f165164ef78f25c211ba96e4698f25ec640e152c

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6cf8d50a103342a5c2f891a55e13c52671eccb74e731cdb4a9a9f2c7febe8eef
MD5 e338e590c3b55afb310f3c2ef39ce154
BLAKE2b-256 7a8d7f55e6b869c34dfb9211cf635198314a921156d76a4881320d1897a379f6

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb9f9a75cfbbcda7802f63c99d42350e9d7693e782910b465e236a48c9ce65fb
MD5 17357ec827d46069b35b3e4b07f84342
BLAKE2b-256 75d6031aaa1b8007a9ec15a783043fdaeeb490d6e7ccdaf725ae4a288e7d6af1

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fc8157d1b0df62b26ade5cc35343245162901ed1e38e9dec448165656c2ba0c
MD5 eb1505cfdce5d88c52f03716d22a16e9
BLAKE2b-256 89007022c828d73124364d7c5385ee8729feac947d246e880542727b79d019d7

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e314f63801611d729fd03b09f127295f05c3b9bac6595b959c6cbb598639692
MD5 426678aff250a9b1afb0ce4e3a5d5747
BLAKE2b-256 82b51a277c764fdb781daf644d25ba3e2e4997e798d924f0c75847bfa81c6a44

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71979d8289a682c49c5c9315df76141d7fc9d8ee8fba248aca0d032efdb26c47
MD5 a3e3481d4521a4347f831709eea3860c
BLAKE2b-256 44d6ddb410b151f7417ee93b40a026150f274d8c702f10ac43eccc06cb2f6c23

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 512ee936a5a24a74d2c545080a724d4c3d5d16b921526936e66e58bb7e0aba2c
MD5 bac91461f50fffc89201b988ba7ae830
BLAKE2b-256 486ec0857fc5f12d7c00828a9f74e28b7858e041b76c16ff90b8a38f727bebb4

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp311-none-win_amd64.whl.

File metadata

  • Download URL: llm_tool-1.0.7-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 703.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for llm_tool-1.0.7-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 9ba260d9a23df3467b4d8a3d5612038457faaf5b3ebe85bde76cdfa1c8409049
MD5 23d9dc8f68188b94be480745ff3fcb08
BLAKE2b-256 08cfa9e6b5ffd1e7b89666fdcbde7377957c57da43e652dbb411a8b31cde7780

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp311-none-win32.whl.

File metadata

  • Download URL: llm_tool-1.0.7-cp311-none-win32.whl
  • Upload date:
  • Size: 635.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for llm_tool-1.0.7-cp311-none-win32.whl
Algorithm Hash digest
SHA256 2d31cffad31a8f46384de7e7d7c20a30fb68234efd1d7fb4469a27f8db5487b7
MD5 901133ceed63cbc6a4196c72dca34222
BLAKE2b-256 2262fcc30ce22e69fe41b312ebb24a185898edef86958ab4f7b0572492693e39

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6240ae67190a0b489c660db47170026f282c1bc3961fa6f4a35407c66a2ef55
MD5 545f08dba5006a26df345b073b1dd475
BLAKE2b-256 75f747b413c28f9583585bc493f9afe156c67d7181c955de60ee0f67646b889f

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a2cf392b640f532ccf6342426d59e5d612bb19930a993fc09cd3f7c08c9c5be
MD5 7c32af10d37f6d5bce2511c88a00db46
BLAKE2b-256 8d572ce40cbd5c25bd7a4b31e67821f8b88232e35be5e964a9f9f06b7736ffa3

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1993745da621fcebbf3c30ef733fd37fdc4a528815074102e81eedfa3dd726e0
MD5 d4019bee14dabcea85e87046af37a369
BLAKE2b-256 75f5bf622739a3002de7ae7b7e75d030489b34d055205a47fafbb498bb97cd26

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fee9beae087bbb993acbad429c85a9b53a14537143bc086a89ac7c28287c19ab
MD5 98869eca9264263fd50d36e53a7062af
BLAKE2b-256 970e04513146b5bea2a48e5536bdbd99869f0c3bf76fd657bcd98478fa5e1cdd

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a34b1f64fbc6cfd1d696bb7e276317c48a807278fc6afb34ff1e11d77a81786
MD5 5c55c593f22fc081f46cd135de2656fb
BLAKE2b-256 cfd2b107fa4ebab78e2b18740d8e1f3512124a8ee40d4f82dda44918122ebff9

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3dbde46166b958f15f68371fd753b55e7bb48545393538f0377bc1ef167063b6
MD5 938ae9e34d5924058fca20a4eafee83d
BLAKE2b-256 c7971066a30ea80419269debb4eed086e40ba1d68088acbe2da26a4fadc453b8

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35826554b4b88dc5e0e388e234472b8ac071afb036378ecea0f0933ce4764e09
MD5 7a4295bd33bfde0fd30b518d3d61d97f
BLAKE2b-256 edac07b4679216c323637287dee461bdd1e5b28e4164a25a8e144d61fb72b40b

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6f609bd90fd42337744a400bb694a8e051170673db53ce2a01092c139bf13082
MD5 c68ac16179e401077cd822efc95e57d2
BLAKE2b-256 9a371e5ef0db12e1b135433189497e373ae157468780a376ba767806bd6680fa

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 888e1b491c65b5084c06557558be0e158fd34a79b13e6bb38b6c7b11e289070f
MD5 2a66cab3b756ac476f1b09331cee0686
BLAKE2b-256 c1558134f15781c026fa44411de847be8e13b98807b8cd1c41c5c03fc7976b2d

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d41a2002b434c0c7fd31d72b9a79f573b761ee1e7ad821fec6bb9a15f9190edb
MD5 f6ed960b906884e5f05400a12ec44297
BLAKE2b-256 9e9a51341d744692100cb7a00683bd433cca8b5e07cbcff35d8acadc4e0d74c3

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23e3c5eb1197fdc7f45d11be43c8b4a4530ad00e6526571e4c132063817b8365
MD5 fcec2d63e62bd00dc9cc47faa6bfb735
BLAKE2b-256 ab3bcb1fefa2b45e4d40c5cf5ad2c3e741480dfea336022b0ced91e1df21d393

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b1f9bc533f1bc56ca817e875fcfc296499df14eda84255956b1878f7ecf733a1
MD5 444b501d0c5172a9278cd36c2ba8f27f
BLAKE2b-256 348a298f836dd8d0028cc244cc9f338e0ce5f4d5218bbd95bf66d37806c3c745

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp310-none-win_amd64.whl.

File metadata

  • Download URL: llm_tool-1.0.7-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 703.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for llm_tool-1.0.7-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7bfcf9fdcd357e5f9439bf95557130a2d5349fb5672154ceac5365967cdb8e14
MD5 8bd1b11a30ef91643443d37fae0b9fe7
BLAKE2b-256 14d5b999169efa1c9a1016a66365d7d22b2a65a6da6dd37750476a27793ae0f7

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp310-none-win32.whl.

File metadata

  • Download URL: llm_tool-1.0.7-cp310-none-win32.whl
  • Upload date:
  • Size: 636.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for llm_tool-1.0.7-cp310-none-win32.whl
Algorithm Hash digest
SHA256 82ff68459347adab015d4d2ecb4d1b2bfd8b2f2f723f5cb800d3c29968253cf9
MD5 22b911669fcc5a74a0cef9843eb83f07
BLAKE2b-256 56ef55ab2a2dc3c64cf059e5d4256458818c8586256c530f2390b5a219528099

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8110da7cfb8dd8c0b78e006f7adfa5cfcd29da524e2ab0aa25407fbfb3d85b3a
MD5 b2f45bbde2c8b2bf7a16b9571e4b6c32
BLAKE2b-256 4e030a9af25979c13ac8653f8ca08d2f3ae4914836f550c1ef7167e1a84587ff

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5741337e3af8ffe7f48660eae2caca6c15e1da028e3d4bb4ffc7590d09bd25d6
MD5 a88e343275bc873d3abda17f512c2b56
BLAKE2b-256 e872dbac286d44688de423b183c579ec6c93f34f8addfe463fa1685f51d8452e

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cd0068aedb3db5a363ff501a06bf7d02a1cd7630f8a6fd193d5c14823ed33583
MD5 d97d378d68479bd19fc8da736a8d15ca
BLAKE2b-256 43cd9940dcec6894c3bde2f4cdaa48d6840b73c267904dbb791cdfd8238733fc

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b6d3972468467212ffeca3fa2536f08e24fadcb8aa8b0e3e47d3416713fcac85
MD5 9235e72f72c43d76871be0dd59bfe3b4
BLAKE2b-256 dffab2343fe16dbd5c38eb15933a2dbd59d5853fa564acc87de5a3ae791da70d

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3b8975df04b55fc32f7976ce983d1d462f469caee8faf0481df6b7c1469e651
MD5 1cec0814f90d473e2bb7a8bf2dd3ab5b
BLAKE2b-256 f0f8c54429655815d76f76a0b8921bf22acc9c1d631c0408c8c9b941e7d772fc

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 254f1371cf8cb527e0c274cbb7757054db8ebaa5a13fab10e52210f76f659451
MD5 cc5df6039f3f6f6ebf3219f36d5b2cea
BLAKE2b-256 3324121ea10d282471b17b53b660fc13d0f3ae0ba98ddb66e7386454d1d3c954

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77cc034f064ec45e4db4f9db8ef33b10a5d109d8bfec7042eab1c81c77ee1d59
MD5 d2b212c47aa51925bb8488f91aee3473
BLAKE2b-256 da945050f776140fce0e74f70ac0b64d11a7557e10b8cc13bcea5c03b676bbf9

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c86bc713d4b07b0e249d789afffa50e9dad254e2a80710230afed9b36c356afc
MD5 544d7dc32dfefc7544338c51ad035a3a
BLAKE2b-256 0c156fe87201666462d456c0076c6b96a7f5e5f48dde4677f1c548d03ae8636b

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 719b7918ca3f5bd9e5e86f5ad95ad8d28271ddfb427cb0788e3c0bbf20ca81f1
MD5 cf41ab846aef2aa5381649c0f0f08cad
BLAKE2b-256 5479b5d6ba5681b577e2ef33e2115288a63297764f5381ac30fb1a3e657d2ce9

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b34424af08691668a3c3c27911f3a8e3f9bdf6a51ccec2070fda30a4b6b11c4
MD5 1a64f0926f4443ac46e84706ab1a3c81
BLAKE2b-256 4eb1d20397d7ba749cc12886bb45aefcc4f9d9147819873762e8dc713728a891

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fdd109088b7a6f0ed11f5121dafc71052a876dffbbf7b17dbd951e708d8382b3
MD5 acdb18209f178c11c0fccf8d126b4429
BLAKE2b-256 2970c8fc861ccaabdf2528a0b9e3d401e0ad1e5ec92e390938de28bff77e9cd0

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp39-none-win_amd64.whl.

File metadata

  • Download URL: llm_tool-1.0.7-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 703.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for llm_tool-1.0.7-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 4d6e36586cadc861627d5d1787822c708c29ccc627efacd3147d06d2246b5954
MD5 d02adac9bc963c4378653bf89460a5f6
BLAKE2b-256 0853feea18a12361a0365e0c3fbd6c688f67328095e6652056ecb00ef3a43b02

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp39-none-win32.whl.

File metadata

  • Download URL: llm_tool-1.0.7-cp39-none-win32.whl
  • Upload date:
  • Size: 636.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for llm_tool-1.0.7-cp39-none-win32.whl
Algorithm Hash digest
SHA256 383ccfcf4a7b5822b92132a5cf7b615c05f9824577360df832e2d66fca294868
MD5 a2cfd46478e374b285873947d7a1de71
BLAKE2b-256 b6344a49d6f60932560238ea00650ac75db0c4063a7c7f9734c9b2dffbd53f5a

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15f120c635589d98df0185777f02e108a0e0f3678d48ed031fc017bc71d93a4f
MD5 2e8c5e00fb4d55067ded36ec683dc21b
BLAKE2b-256 9d9f1c0a46a9e45641db7441a1b0f700396f4eaede69bd5c78912375bc323ddb

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da96a7554945da04354f470cabdfc22a9bc2283977282acba0af90603104bf8e
MD5 e89554ae0b8e7426e22bd361c6fd5e38
BLAKE2b-256 0c9299634922b7c6334f991c7cdce6278cb6043743974fa2fd8f6b7993775c6f

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7ccf657e2ad789679f38b7aab8f78f2843a4483dc9165a677194cbfd2da69cc
MD5 13c84f82fdce937c5bd7f63bb231f537
BLAKE2b-256 bcf1c052443ff887909c415e30f59d0ad0e6e580e468fac37e20fbc259d15496

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8cefb269dfe7ec439a13e763ed80307903fab48f42ed89f3916c6878c16691c7
MD5 bc640b53f76d7c5097132f9ccce027d1
BLAKE2b-256 aa20d075b3b2ad1db29e242e330b8a324b6f511a267ff7106440d23d9b102fed

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da3e338d8c9bb4cc8a66c821ee52ec6e3265c0533e0340b2599540133aa56fc9
MD5 381ef72169019bfddb5b545312b9c70e
BLAKE2b-256 df4de1d4efd98d5c6991dc8de4c00e8b8f7cae1c92007a17ae9a5681b0757f99

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 364f709f914385763cc426edd7047828a5005151787ea22080549b0d327ccaa2
MD5 a7e9f5849070970634c31cf8d1ddffb4
BLAKE2b-256 893e602902d2a1078a49a64f429820626e80d80da9ece4830572d85ed7bcc7be

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aad38bd72362dd7a8630da74bab1e456b08a83660d7e04043f91861bc62e1fd1
MD5 5eb088200c437957d5fef648ffa51a5a
BLAKE2b-256 9ee5127e4bb87dca3e16b8f42b129fb444c8d2158441635a20bfb9b5d888742f

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4e5f5bc6812de74b7cdf5470bb39936c386eb3511b964327c649222d7d1d45b8
MD5 247655a1be65ca9b5f0bc475a206a5aa
BLAKE2b-256 f15909c39b86e1e0bf4a93f7af444914be26f5cdcbf63637f82be1040324434f

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e5dc4a30e91da18bc88b6d2f7f980acfdc514a82ee547507902a2884be6eddb
MD5 c93e7c634930aec37f15a46bef7db23f
BLAKE2b-256 8fc16bdb2b7e8e10d7314eb8baa85837ce5625fdfdab6c08673d7da5c8eb6a70

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5803478a5d46ffed795099230a8b7a2ddb2fbecc02d2e73b87e62bb8242738b6
MD5 198421f85e1ad61e27fcddf7328765c1
BLAKE2b-256 2f6512c9c54691201782f58f3982c5ad5c73bdb876b8879b6cab15aba7548f29

See more details on using hashes here.

File details

Details for the file llm_tool-1.0.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for llm_tool-1.0.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 330df01df8d2185734eabe75412ccb6953d7918aca28a9cac519c862d55e1757
MD5 a4801b33cdc6b98ba7b82b466274fc7e
BLAKE2b-256 4078caf86c995f73827c9257f02e57eecdc8c320ff1415f4fa091c23e91b26cb

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