You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,15 @@
4
4
5
5
### Added
6
6
7
+
- Document node is now always created when running SimpleKGPipeline, even if `from_pdf=False`.
8
+
- Document metadata is exposed in SimpleKGPipeline run method.
7
9
- Added automatic rate limiting with retry logic and exponential backoff for all Embedding providers using tenacity. The `RateLimitHandler` interface allows for custom rate limiting strategies, including the ability to disable rate limiting entirely.
8
10
11
+
### Fixed
12
+
13
+
- LangChain Chat models compatibility is now working again.
) # if rate_limit_handler and async_rate_limit_handler decorators are used, the default rate limit handler will be applied automatically (retry with exponential backoff)
36
+
llm=CustomLLM("")
48
37
res: LLMResponse=llm.invoke("text")
49
38
print(res.content)
50
39
51
-
# If rate_limit_handler and async_rate_limit_handler decorators are used and you want to use a custom rate limit handler
40
+
# If you want to use a custom rate limit handler
52
41
# Type variables for function signatures used in rate limit handlers
0 commit comments