rig 0.41.0

An opinionated library for building LLM powered applications.
Documentation
[workspace]
git_release_body = """{{ changelog }}"""
git_release_enable = false
git_tag_enable = false
release_always = false

[[package]]
name = "rig"
git_release_enable = true
git_tag_enable = true
git_tag_name = "v{{ version }}"

# Compile-only tripwire, never published and never versioned. `publish = false`
# already keeps release-plz off it; this is belt-and-braces so it can't show up
# in a release PR.
[[package]]
name = "rig-core-macro-hygiene"
release = false
publish = false

[changelog]
body = """
## [{{ version }}]\
    {%- if release_link -%}\
        ({{ release_link }})\
    {% endif %} \
    - {{ timestamp | date(format="%Y-%m-%d") }}
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}

    {% for commit in commits %}
        {%- if commit.scope -%}
            - *({{commit.scope}})* {% if commit.breaking %}[**breaking**] {% endif %}\
                {{ commit.message }}{{ self::username(commit=commit) }}\
                {%- if commit.links %} \
                    ({% for link in commit.links %}[{{link.text}}]({{link.href}}) {% endfor -%})\
                {% endif %}
        {% else -%}
            - {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message }}{{ self::username(commit=commit) }}{{ self::pr(commit=commit) }}
        {% endif -%}
    {% endfor -%}
{% endfor %}
{%- if remote.contributors %}
### Contributors
{% for contributor in remote.contributors %}
    * [{{ contributor.username }}](https://github.com/{{ contributor.username }})
{%- endfor %}
{% endif -%}
{%- macro username(commit) -%}
    {% if commit.remote.username %} (by [{{ commit.remote.username }}](https://github.com/{{ commit.remote.username }})){% endif -%}
{% endmacro -%}
{%- macro pr(commit) -%}
    {% if commit.remote.pr_number %} - #{{ commit.remote.pr_number }}{% endif -%}
{% endmacro -%}
"""