tryAGI / Tiktoken

This project implements token calculation for OpenAI's gpt-4 and gpt-3.5-turbo model, specifically using `cl100k_base` encoding.
https://github.com/openai/tiktoken
MIT License
49 stars 2 forks source link

build(deps): Bump the all group with 10 updates #18

Closed dependabot[bot] closed 7 months ago

dependabot[bot] commented 7 months ago

Bumps the all group with 10 updates:

Package From To
PolySharp 1.13.2 1.14.1
H.Resources.Generator 1.5.1 1.6.0
Microsoft.NET.Test.Sdk 17.8.0 17.9.0
MSTest.TestAdapter 3.1.1 3.2.0
MSTest.TestFramework 3.1.1 3.2.0
Verify.MSTest 22.6.0 23.1.0
BenchmarkDotNet 0.13.10 0.13.12
Microsoft.DeepDev.TokenizerLib 1.3.2 1.3.3
SharpToken 1.2.14 1.2.15
TiktokenSharp 1.0.8 1.0.9

Updates PolySharp from 1.13.2 to 1.14.1

Release notes

Sourced from PolySharp's releases.

1.14.1

✅ Bug fixes and changes

New Contributors

1.14.0

This PolySharp release includes C# 12 support.

🪄 Polyfills

✅ Bug fixes

🔧 Other changes

New Contributors

Commits
  • a7a92a9 Merge pull request #91 from piotrstenke/patch-1
  • e811138 Fix typos in PolyfillsGenerator.cs
  • 8759578 Merge pull request #92 from sliekens/bugfix/inline-array-attribute-visibility
  • 15de11d Fix InlineArrayAttribute visibility
  • 2a6e35e Merge pull request #81 from Sergio0694/dev/net8-polyfills
  • d171c2e Remove unnecessary [UnmanagedCallersOnly] constructor
  • c06aad4 Add InlineArrayAttribute polyfill
  • 90c196a Add unit tests for new polyfill types
  • 897ed98 Update language version in readme files
  • f19ef6c Add type forwarding test for [RequiresLocation]
  • Additional commits viewable in compare view


Updates H.Resources.Generator from 1.5.1 to 1.6.0

Commits


Updates Microsoft.NET.Test.Sdk from 17.8.0 to 17.9.0

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

v17.9.0

What's Changed

New Contributors

Full Changelog: https://github.com/microsoft/vstest/compare/v17.8.0...v17.9.0

v17.9.0-release-23619-01

What's Changed

Full Changelog: https://github.com/microsoft/vstest/compare/v17.9.0-preview-23577-04...v17.9.0-release-23619-01

v17.9.0-preview-23577-04

What's Changed

Full Changelog: https://github.com/microsoft/vstest/compare/v17.9.0-preview-23531-01...v17.9.0-preview-23577-04

v17.9.0-preview-23531-01

What's Changed

Full Changelog: https://github.com/microsoft/vstest/compare/v17.9.0-preview-23503-02...v17.9.0-preview-23531-01

v17.9.0-preview-23503-02

What's Changed

Full Changelog: https://github.com/microsoft/vstest/compare/v17.8.0-release-23468-02...v17.9.0-preview-23503-02

Commits


Updates MSTest.TestAdapter from 3.1.1 to 3.2.0

Release notes

Sourced from MSTest.TestAdapter's releases.

v.3.2.0

See the release notes here.

v3.2.0-preview.24069.3

See the release notes here.

v3.2.0-preview.23623.1

See the release notes here.

v3.2.0-preview.23622.1

See the release notes here.

Changelog

Sourced from MSTest.TestAdapter's changelog.

[3.2.0] - 2024-01-24

See full log here

Added

Fixed

Chores

... (truncated)

Commits


Updates MSTest.TestFramework from 3.1.1 to 3.2.0

Release notes

Sourced from MSTest.TestFramework's releases.

v.3.2.0

See the release notes here.

v3.2.0-preview.24069.3

See the release notes here.

v3.2.0-preview.23623.1

See the release notes here.

v3.2.0-preview.23622.1

See the release notes here.

Changelog

Sourced from MSTest.TestFramework's changelog.

[3.2.0] - 2024-01-24

See full log here

Added

Fixed

Chores

... (truncated)

Commits


Updates Verify.MSTest from 22.6.0 to 23.1.0

Commits


Updates BenchmarkDotNet from 0.13.10 to 0.13.12

Release notes

Sourced from BenchmarkDotNet's releases.

0.13.12

Full changelog: https://benchmarkdotnet.org/changelog/v0.13.12.html

Highlights

The biggest highlight of this release if our new VSTest Adapter, which allows to run benchmarks as unit tests in your favorite IDE! The detailed guide can be found here.

This release also includes to a minor bug fix that caused incorrect job id generation: fixed job id generation (#2491).

Also, the target framework in the BenchmarkDotNet templates was bumped to .NET 8.0.

0.13.11

Full changelog: https://benchmarkdotnet.org/changelog/v0.13.11.html

In the v0.13.11 scope, 4 issues were resolved and 8 pull requests were merged. This release includes 28 commits by 7 contributors.

Resolved issues (4)

  • #2060 NativeAOT benchmark started from .Net Framework host doesn't have all intrinsics enabled (assignee: @​adamsitnik)
  • #2233 Q: Include hardware counters in XML output (assignee: @​nazulg)
  • #2388 Include AVX512 in listed HardwareIntrinsics
  • #2463 Bug. Native AOT .NET 7.0 doesn't work. System.NotSupportedException: X86Serialize (assignee: @​adamsitnik)

Merged pull requests (8)

Commits (28)

... (truncated)

Commits
  • cdce32f Prepare v0.13.12 changelog
  • 0159b88 [docs] Update vstest
  • 2990951 [Bug Fix] Custom SimpleJob Id ignored (#2491)
  • 06fb242 Use different FQNs for parameterized cases in TestAdapter, fix #2494
  • b67b6b1 Update pack files layout for BenchmarkDotNet.TestAdapter, fix #2492
  • 9f74923 [build] Add test-pack job in run-tests workflow, see #2492
  • 8b6badb [build] In the release workflow, automatically generate an announcement discu...
  • 5c46537 [build] Bump Octokit: 9.0.0->9.1.0
  • 41b23b7 Update default framework version to net8.0 (LTS)
  • 91f3f7e Add a VSTest Adapter (#2438)
  • Additional commits viewable in compare view


Updates Microsoft.DeepDev.TokenizerLib from 1.3.2 to 1.3.3

Release notes

Sourced from Microsoft.DeepDev.TokenizerLib's releases.

Microsoft.DeepDev.TokenizerLib 1.3.3 Release

You can find the published NuGet package here. You can find the Tokenizer.exe in the attached Tokenizer.zip. To run performance benchmark, you can download the attached PerfBenchmark.zip.

Commits
  • 2c9ba5d Adding new APIs to avoid passing in allowed special tokens (#27)
  • 512d432 Fix encodeTrim* on special strings with repeat tokens (#26)
  • 3c6fcb9 Fix caching for other APIs as well (#23)
  • 6c7d0d2 fix cache miss problem (#22)
  • fa7f2a1 Update README.md
  • 6a7beb4 Update tokenizer-ts-release.yml
  • d8eac55 Create npm-publish-github-packages.yml
  • c24bcbd Update tokenizer-ts-release.yml to publish to npmjs
  • ab64002 remove node-fetch (#21)
  • 1387fde Fix link in README (#19)
  • Additional commits viewable in compare view


Updates SharpToken from 1.2.14 to 1.2.15

Release notes

Sourced from SharpToken's releases.

Release 1.2.15

Release of version 1.2.15

Commits


Updates TiktokenSharp from 1.0.8 to 1.0.9

Commits
  • f499c7c update readme
  • e0b73d4 Merge pull request #16 from winzig/openai-new-embeddings
  • c434f1e Adding support for OpenAI's new embedding models: text-embedding-3-small and ...
  • See full diff in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions