File tree 1 file changed +17
-1
lines changed
libs/core/tests/benchmarks
1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change 22
22
),
23
23
pytest .param (
24
24
"from langchain_core.prompts import ChatPromptTemplate" ,
25
- id = "PromChatPromptTemplateptTemplate " ,
25
+ id = "ChatPromptTemplate " ,
26
26
),
27
27
pytest .param ("from langchain_core.documents import Document" , id = "Document" ),
28
28
pytest .param (
29
29
"from langchain_core.vectorstores import InMemoryVectorStore" ,
30
30
id = "InMemoryVectorStore" ,
31
31
),
32
+ pytest .param (
33
+ "from langchain_core.runnables import RunnableLambda" ,
34
+ id = "RunnableLambda" ,
35
+ ),
36
+ pytest .param (
37
+ "from langchain_core.tracers import LangChainTracer" ,
38
+ id = "LangChainTracer" ,
39
+ ),
40
+ pytest .param (
41
+ "from langchain_core.output_parsers import PydanticOutputParser" ,
42
+ id = "PydanticOutputParser" ,
43
+ ),
44
+ pytest .param (
45
+ "from langchain_core.rate_limiters import InMemoryRateLimiter" ,
46
+ id = "InMemoryRateLimiter" ,
47
+ ),
32
48
],
33
49
)
34
50
@pytest .mark .benchmark
You can’t perform that action at this time.
0 commit comments