Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
16ef903
feat: :sparkles: add support for Assistant resource
Nov 27, 2024
fc45f19
fix: :bug: use `List` for typing instead of `list`
Nov 28, 2024
18d0092
fix: :label: better typing & remove doc string
Nov 28, 2024
c46e517
fix: :bug: pr fixes
Nov 28, 2024
90f44f5
fix: :label: remove `Model` Literal typing
Nov 28, 2024
5de2d8c
fix: :label: tool_resources use type
Nov 28, 2024
a9f7d67
fix: :green_heart: imports
Nov 28, 2024
139887d
Merge pull request #231 from AI21Labs/assistant
benshuk Nov 28, 2024
4b31a42
feat: :sparkles: add support for Assistant resource
Nov 27, 2024
3128145
fix: :bug: use `List` for typing instead of `list`
Nov 28, 2024
a03deab
fix: :label: better typing & remove doc string
Nov 28, 2024
dd7d71d
fix: :bug: pr fixes
Nov 28, 2024
17af071
fix: :label: remove `Model` Literal typing
Nov 28, 2024
c8ee041
fix: :label: tool_resources use type
Nov 28, 2024
f9e695b
fix: :green_heart: imports
Nov 28, 2024
2cf1a85
Merge remote-tracking branch 'origin/rc_assistant_api_support' into r…
Dec 1, 2024
62566cd
feat: :sparkles: add support for Thread resource
Dec 1, 2024
ae7a3e4
fix: :truck: rename classes and such
Dec 1, 2024
c944172
fix: :truck: move classes and such
Dec 1, 2024
29fb8ce
Merge pull request #232 from AI21Labs/threads
benshuk Dec 1, 2024
d2747a5
fix: :truck: rename `get` method to `retrieve`
Dec 2, 2024
151f5ac
refactor: :truck: move `MessageResponse` type to a separate file
Dec 2, 2024
b483e70
feat: :sparkles: add support for Message resource
Dec 2, 2024
a8c345e
refactor: :art: reformat functions with 2+ arguments
Dec 2, 2024
abcc2f9
Merge pull request #234 from AI21Labs/messages
benshuk Dec 2, 2024
d4beb22
feat: ✨ add support for Run resource (#236)
benshuk Dec 4, 2024
f1f5cbc
feat: :sparkles: add support for `Plan` and `Route` resources (#238)
benshuk Dec 4, 2024
3bdad90
chore(release): v3.1.0-rc.1 [skip ci]
Dec 4, 2024
770c6c5
chore: :truck: rename `internet_research` to `web_search` (#241)
benshuk Dec 11, 2024
78c58d5
fix: Adapt assistant sdk to hlp (#242)
MichalAI21 Dec 16, 2024
5deee97
chore(release): v3.1.0-rc.2 [skip ci]
Dec 22, 2024
5782127
fix: not given as a constant not class (#244)
MichalAI21 Dec 24, 2024
d1ec5ff
chore(release): v3.1.0-rc.3 [skip ci]
Dec 26, 2024
21f6df3
Merge branch 'main' into rc_assistant_api_support
Jan 6, 2025
23772dc
feat: :sparkles: add support for `str` message content (#245)
benshuk Jan 6, 2025
787d7d3
chore: add `error` to `RunResponse` model (#248)
benshuk Jan 7, 2025
7ff423d
feat: :sparkles: add support for status polling for `Run` (#249)
benshuk Jan 7, 2025
175c686
feat: add submit_input method for thread run (#250)
guyl25 Jan 8, 2025
4327dbb
chore(release): v3.1.0-rc.4 [skip ci]
Jan 8, 2025
c09170f
refactor: :label: change `rag` tool resource to `file_search` (#251)
benshuk Jan 8, 2025
44fba45
Merge branch 'main' into rc_assistant_api_support
Jan 8, 2025
d646e99
fix: :bug: await needed for async `plans.create` (#252)
benshuk Jan 8, 2025
f2f7918
chore(release): v3.1.0-rc.5 [skip ci]
Jan 8, 2025
1714ccc
fix: do not require all fields for RequiredAction (#253)
guyl25 Jan 8, 2025
0d8f306
chore(release): v3.1.0-rc.6 [skip ci]
Jan 8, 2025
4a7dfe0
fix: bad endpoint in async thread runs (#255)
guyl25 Jan 12, 2025
6d9d1a4
fix: change schemas field in PlanResponse to be optional (#257)
MichalAI21 Jan 13, 2025
45d874c
chore(release): v3.1.0-rc.7 [skip ci]
Jan 13, 2025
0195f62
feat: ✨ support deleting assistant (#258)
benshuk Jan 14, 2025
7198db9
chore: :recycle: thread messages should be optional
Jan 14, 2025
182ebbd
Merge pull request #259 from AI21Labs/thread-no-msgs
liorbenita2 Jan 20, 2025
9b73967
fix: 🐛 create thread without messages plz (#260)
benshuk Jan 21, 2025
aedf04a
chore(release): v3.1.0-rc.8 [skip ci]
Jan 21, 2025
9b7cbfc
fix: change tool to a dict
bennyai21 Jan 27, 2025
cc3984f
fix: pre commit
bennyai21 Jan 27, 2025
e70e1f8
fix: tools
bennyai21 Jan 28, 2025
5cb61b8
chore: fix dict to Dict big D
liorbenita2 Jan 28, 2025
5d6e647
Merge pull request #263 from AI21Labs/rc-tools-dict
bennyai21 Jan 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
minimum_pre_commit_version: 2.20.0
fail_fast: false
default_stages:
- commit
- pre-commit
exclude: (.idea|vscode)
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
Expand Down
Loading
Loading