mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-06-20 21:10:58 +02:00
bump version and fix related issues (#3996)
This commit is contained in:
parent
6687d5d499
commit
3ba65214b8
@ -85,7 +85,7 @@ if __name__ == "__main__":
|
|||||||
|
|
||||||
graph = basic_graph_builder()
|
graph = basic_graph_builder()
|
||||||
compiled_graph = graph.compile()
|
compiled_graph = graph.compile()
|
||||||
input = BasicInput(_unused=True)
|
input = BasicInput(unused=True)
|
||||||
primary_llm, fast_llm = get_default_llms()
|
primary_llm, fast_llm = get_default_llms()
|
||||||
with get_session_context_manager() as db_session:
|
with get_session_context_manager() as db_session:
|
||||||
config, _ = get_test_config(
|
config, _ = get_test_config(
|
||||||
|
@ -17,7 +17,7 @@ from onyx.agents.agent_search.orchestration.states import ToolChoiceUpdate
|
|||||||
class BasicInput(BaseModel):
|
class BasicInput(BaseModel):
|
||||||
# Langgraph needs a nonempty input, but we pass in all static
|
# Langgraph needs a nonempty input, but we pass in all static
|
||||||
# data through a RunnableConfig.
|
# data through a RunnableConfig.
|
||||||
_unused: bool = True
|
unused: bool = True
|
||||||
|
|
||||||
|
|
||||||
## Graph Output State
|
## Graph Output State
|
||||||
|
@ -142,7 +142,7 @@ def run_basic_graph(
|
|||||||
) -> AnswerStream:
|
) -> AnswerStream:
|
||||||
graph = basic_graph_builder()
|
graph = basic_graph_builder()
|
||||||
compiled_graph = graph.compile()
|
compiled_graph = graph.compile()
|
||||||
input = BasicInput()
|
input = BasicInput(unused=True)
|
||||||
return run_graph(compiled_graph, config, input)
|
return run_graph(compiled_graph, config, input)
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,8 +34,8 @@ langchain-core==0.3.24
|
|||||||
langchain-openai==0.2.9
|
langchain-openai==0.2.9
|
||||||
langchain-text-splitters==0.3.2
|
langchain-text-splitters==0.3.2
|
||||||
langchainhub==0.1.21
|
langchainhub==0.1.21
|
||||||
langgraph==0.2.59
|
langgraph==0.2.72
|
||||||
langgraph-checkpoint==2.0.5
|
langgraph-checkpoint==2.0.13
|
||||||
langgraph-sdk==0.1.44
|
langgraph-sdk==0.1.44
|
||||||
litellm==1.60.2
|
litellm==1.60.2
|
||||||
lxml==5.3.0
|
lxml==5.3.0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user