feat: Initial version of SurfSense own LangGraph Agent.

This commit is contained in:
DESKTOP-RTLN3BA\$punk 2025-04-19 23:25:06 -07:00
parent 6e1a254fcd
commit 34300ead02
13 changed files with 884 additions and 167 deletions

View file

@ -42,10 +42,8 @@ class Config:
# GPT Researcher
FAST_LLM = os.getenv("FAST_LLM")
SMART_LLM = os.getenv("SMART_LLM")
STRATEGIC_LLM = os.getenv("STRATEGIC_LLM")
fast_llm_instance = ChatLiteLLM(model=extract_model_name(FAST_LLM))
smart_llm_instance = ChatLiteLLM(model=extract_model_name(SMART_LLM))
strategic_llm_instance = ChatLiteLLM(model=extract_model_name(STRATEGIC_LLM))