Skip to content

Commit 44c2231

Browse files
authored
Merge branch 'main' into ODSC-63450/oci_odsc_llm
2 parents ee80c86 + c9975ed commit 44c2231

File tree

277 files changed

+9947
-928
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

277 files changed

+9947
-928
lines changed

.github/workflows/core-typecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
# You can use PyPy versions in python-version.
1717
# For example, pypy-2.7 and pypy-3.8
1818
matrix:
19-
python-version: ["3.9"]
19+
python-version: ["3.10"]
2020
steps:
2121
- uses: actions/checkout@v4
2222
with:

CHANGELOG.md

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,93 @@
11
# ChangeLog
22

3+
## [2025-01-15]
4+
5+
### `llama-index-core` [0.12.11]
6+
7+
- fix: bug in MediaResource validator (#17509)
8+
- handle pandas errors in md to df in MarkdownElementNodeParser (#17511)
9+
- bugfix: Duplicated citation nodes (#17440)
10+
- Fixed issue #17397 by updating the markdown format in MarkdownReader (#17429)
11+
- feat: support adding images to ChatMessage through additional_kwargs (#17477)
12+
- feat: async semantic splitter noder parser (#17449)
13+
- more exception handling in schema llm extractor (#17432)
14+
15+
### `llama-index-agent-openai` [0.4.2]
16+
17+
- Async memory management for OpenAIAgentWorker (#17375)
18+
19+
### `llama-index-embeddings-huggingface` [0.5.0]
20+
21+
- multimodal huggingface embeddings support (#17463)
22+
23+
### `llama-index-embeddings-gemini` [0.3.1]
24+
25+
- add request options to gemini (#17452)
26+
27+
### `llama-index-embeddings-opea` [0.1.0]
28+
29+
- Add support for OPEA LLMs in Llama-Index (#16666)
30+
31+
### `llama-index-embeddings-upstage` [0.4.1]
32+
33+
- bugfix: Fix upstage embedding available model mapping (#17460)
34+
35+
### `llama-index-graph-stores-neo4j` [0.4.5]
36+
37+
- Fix neo4j schema bug (#17448)
38+
39+
### `llama-index-llms-gemini` [0.4.3]
40+
41+
- add request options to gemini (#17452)
42+
43+
### `llama-index-llms-opea` [0.1.0]
44+
45+
- Add support for OPEA LLMs in Llama-Index (#16666)
46+
47+
### `llama-index-llms-openai` [0.3.13]
48+
49+
- adjust openai model temperature to accept values between 0 and 2 (#17453)
50+
51+
### `llama-index-multi-modal-llms-bedrock` [0.1.0]
52+
53+
- Add Multi Modal Bedrock Integration (#17451)
54+
55+
### `llama-index-postprocessor-bedrock-rerank` [0.3.1]
56+
57+
- Change `top_n` if number of input nodes are less (#17374)
58+
59+
### `llama-index-readers-slack` [0.3.1]
60+
61+
- Added support to allow only public slack channels (#17399)
62+
63+
### `llama-index-storage-chat-store-tablestore` [0.1.0]
64+
65+
- Tablestore Support ChatStore/KvStore/DocStore/IndexStore (#17473)
66+
67+
### `llama-index-storage-docstore-tablestore` [0.1.0]
68+
69+
- Tablestore Support ChatStore/KvStore/DocStore/IndexStore (#17473)
70+
71+
### `llama-index-storage-index-store-tablestore` [0.1.0]
72+
73+
- Tablestore Support ChatStore/KvStore/DocStore/IndexStore (#17473)
74+
75+
### `llama-index-storage-kvstore-tablestore` [0.1.0]
76+
77+
- Tablestore Support ChatStore/KvStore/DocStore/IndexStore (#17473)
78+
79+
### `llama-index-vector-stores-mariadb` [0.3.0]
80+
81+
- Support MariaDB 11.7 in the MariaDB vector store integration (#17497)
82+
83+
### `llama-index-vector-stores-neptune` [0.3.1]
84+
85+
- add test, fix missing method (#17485)
86+
87+
### `llama-index-vector-stores-qdrant` [0.4.3]
88+
89+
- Add new operator for Qdrant Vector store (#17490)
90+
391
## [2024-12-31]
492

593
### `llama-index-core` [0.12.10]

docs/docs/CHANGELOG.md

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,93 @@
11
# ChangeLog
22

3+
## [2025-01-15]
4+
5+
### `llama-index-core` [0.12.11]
6+
7+
- fix: bug in MediaResource validator (#17509)
8+
- handle pandas errors in md to df in MarkdownElementNodeParser (#17511)
9+
- bugfix: Duplicated citation nodes (#17440)
10+
- Fixed issue #17397 by updating the markdown format in MarkdownReader (#17429)
11+
- feat: support adding images to ChatMessage through additional_kwargs (#17477)
12+
- feat: async semantic splitter noder parser (#17449)
13+
- more exception handling in schema llm extractor (#17432)
14+
15+
### `llama-index-agent-openai` [0.4.2]
16+
17+
- Async memory management for OpenAIAgentWorker (#17375)
18+
19+
### `llama-index-embeddings-huggingface` [0.5.0]
20+
21+
- multimodal huggingface embeddings support (#17463)
22+
23+
### `llama-index-embeddings-gemini` [0.3.1]
24+
25+
- add request options to gemini (#17452)
26+
27+
### `llama-index-embeddings-opea` [0.1.0]
28+
29+
- Add support for OPEA LLMs in Llama-Index (#16666)
30+
31+
### `llama-index-embeddings-upstage` [0.4.1]
32+
33+
- bugfix: Fix upstage embedding available model mapping (#17460)
34+
35+
### `llama-index-graph-stores-neo4j` [0.4.5]
36+
37+
- Fix neo4j schema bug (#17448)
38+
39+
### `llama-index-llms-gemini` [0.4.3]
40+
41+
- add request options to gemini (#17452)
42+
43+
### `llama-index-llms-opea` [0.1.0]
44+
45+
- Add support for OPEA LLMs in Llama-Index (#16666)
46+
47+
### `llama-index-llms-openai` [0.3.13]
48+
49+
- adjust openai model temperature to accept values between 0 and 2 (#17453)
50+
51+
### `llama-index-multi-modal-llms-bedrock` [0.1.0]
52+
53+
- Add Multi Modal Bedrock Integration (#17451)
54+
55+
### `llama-index-postprocessor-bedrock-rerank` [0.3.1]
56+
57+
- Change `top_n` if number of input nodes are less (#17374)
58+
59+
### `llama-index-readers-slack` [0.3.1]
60+
61+
- Added support to allow only public slack channels (#17399)
62+
63+
### `llama-index-storage-chat-store-tablestore` [0.1.0]
64+
65+
- Tablestore Support ChatStore/KvStore/DocStore/IndexStore (#17473)
66+
67+
### `llama-index-storage-docstore-tablestore` [0.1.0]
68+
69+
- Tablestore Support ChatStore/KvStore/DocStore/IndexStore (#17473)
70+
71+
### `llama-index-storage-index-store-tablestore` [0.1.0]
72+
73+
- Tablestore Support ChatStore/KvStore/DocStore/IndexStore (#17473)
74+
75+
### `llama-index-storage-kvstore-tablestore` [0.1.0]
76+
77+
- Tablestore Support ChatStore/KvStore/DocStore/IndexStore (#17473)
78+
79+
### `llama-index-vector-stores-mariadb` [0.3.0]
80+
81+
- Support MariaDB 11.7 in the MariaDB vector store integration (#17497)
82+
83+
### `llama-index-vector-stores-neptune` [0.3.1]
84+
85+
- add test, fix missing method (#17485)
86+
87+
### `llama-index-vector-stores-qdrant` [0.4.3]
88+
89+
- Add new operator for Qdrant Vector store (#17490)
90+
391
## [2024-12-31]
492

593
### `llama-index-core` [0.12.10]

docs/docs/CONTRIBUTING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ Help us extend LlamaIndex's functionality by contributing to any of our core mod
5050

5151
Explore the different modules below to get inspired!
5252

53+
New integrations should meaningfully integrate with existing LlamaIndex framework components. At the discretion of LlamaIndex maintainers, some integrations may be declined.
54+
5355
### 2. 📦 Contribute Tools, Readers, Packs, or Datasets
5456

5557
Create new Packs, Readers, or Tools that simplify how others use LlamaIndex with various platforms.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
::: llama_index.core.agent.workflow
2+
options:
3+
members:
4+
- AgentWorkflow
5+
- BaseWorkflowAgent
6+
- FunctionAgent
7+
- ReActAgent
8+
- AgentInput
9+
- AgentStream
10+
- AgentOutput
11+
- ToolCall
12+
- ToolCallResult
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.embeddings.opea
2+
options:
3+
members:
4+
- OPEAEmbedding

docs/docs/api_reference/llms/opea.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.llms.opea
2+
options:
3+
members:
4+
- OPEA
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.llms.stepfun
2+
options:
3+
members:
4+
- StepFun
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.multi_modal_llms.bedrock
2+
options:
3+
members:
4+
- BedrockMultiModal

docs/docs/api_reference/readers/web.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- BeautifulSoupWebReader
66
- BrowserbaseWebReader
77
- FireCrawlWebReader
8+
- HyperbrowserWebReader
89
- KnowledgeBaseWebReader
910
- MainContentExtractorReader
1011
- NewsArticleReader
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.storage.chat_store.tablestore
2+
options:
3+
members:
4+
- TablestoreChatStore
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.storage.docstore.tablestore
2+
options:
3+
members:
4+
- TablestoreDocumentStore
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.storage.index_store.tablestore
2+
options:
3+
members:
4+
- TablestoreIndexStore
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.storage.kvstore.tablestore
2+
options:
3+
members:
4+
- TablestoreKVStore

0 commit comments

Comments
 (0)