Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Llama Index
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
MachineLearning
run-llama
Llama Index
Commits
de47f8ca
Unverified
Commit
de47f8ca
authored
1 year ago
by
Logan
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
[version] bump to v0.9.26 (#9870)
parent
a2cba53e
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+18
-0
18 additions, 0 deletions
CHANGELOG.md
llama_index/VERSION
+1
-1
1 addition, 1 deletion
llama_index/VERSION
llama_index/storage/chat_store/simple_chat_store.py
+3
-3
3 additions, 3 deletions
llama_index/storage/chat_store/simple_chat_store.py
pyproject.toml
+1
-1
1 addition, 1 deletion
pyproject.toml
with
23 additions
and
5 deletions
CHANGELOG.md
+
18
−
0
View file @
de47f8ca
# ChangeLog
## [0.9.26] - 2024-01-05
### New Features
-
Added a
`BaseChatStore`
and
`SimpleChatStore`
abstraction for dedicated chat memory storage (#9863)
-
Enable custom
`tree_sitter`
parser to be passed into
`CodeSplitter`
(#9845)
-
Created a
`BaseAutoRetriever`
base class, to allow other retrievers to extend to auto modes (#9846)
-
Added support for Nvidia Triton LLM (#9488)
-
Added
`DeepEval`
one-click observability (#9801)
### Bug Fixes / Nits
-
Updated the guidance integration to work with the latest version (#9830)
-
Made text storage optional for doctores/ingestion pipeline (#9847)
-
Added missing
`sphinx-automodapi`
dependency for docs (#9852)
-
Return actual node ids in weaviate query results (#9854)
-
Added prompt formatting to LangChainLLM (#9844)
## [0.9.25] - 2024-01-03
### New Features
...
...
This diff is collapsed.
Click to expand it.
llama_index/VERSION
+
1
−
1
View file @
de47f8ca
0.9.2
5.post1
0.9.2
6
This diff is collapsed.
Click to expand it.
llama_index/storage/chat_store/simple_chat_store.py
+
3
−
3
View file @
de47f8ca
...
...
@@ -72,7 +72,7 @@ class SimpleChatStore(BaseChatStore):
fs
.
makedirs
(
dirpath
)
with
fs
.
open
(
persist_path
,
"
w
"
)
as
f
:
f
.
write
(
json
.
dumps
(
self
.
store
))
f
.
write
(
json
.
dumps
(
self
.
json
()
))
@classmethod
def
from_persist_path
(
...
...
@@ -85,5 +85,5 @@ class SimpleChatStore(BaseChatStore):
if
not
fs
.
exists
(
persist_path
):
return
cls
()
with
fs
.
open
(
persist_path
,
"
r
"
)
as
f
:
store
=
json
.
load
(
f
)
return
cls
(
store
=
store
)
data
=
json
.
load
(
f
)
return
cls
.
parse_raw
(
data
)
This diff is collapsed.
Click to expand it.
pyproject.toml
+
1
−
1
View file @
de47f8ca
...
...
@@ -42,7 +42,7 @@ name = "llama-index"
packages
=
[{include
=
"llama_index"
}]
readme
=
"README.md"
repository
=
"https://github.com/run-llama/llama_index"
version
=
"0.9.2
5.post1
"
version
=
"0.9.2
6
"
[tool.poetry.dependencies]
SQLAlchemy
=
{
extras
=
[
"asyncio"
],
version
=
">
=
1.4
.
49
"}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment