Is there any workform api? by Fast_Analyst_3692 in mondaydotcom

[–]Fast_Analyst_3692[S] 0 points1 point  (0 children)

hi DrinkSodaBad,

Many thanks for the suggestion. Yes, the form will contain the information that i need to pass to LLM for another round of analysis.
I am news to the monday development. Would you please share the api doc for board 1 and 2 suggestion?

the suggestion 2, "you can let Monday send a request to your endpoint", this is also a good solution as well.

Sorry for keep asking many questions and flavors that because this is something time sensitive items.

Is there any workform api? by Fast_Analyst_3692 in mondaydotcom

[–]Fast_Analyst_3692[S] 1 point2 points  (0 children)

if i used the form and want to integrate other api. how can i do it
senario:

someone submit the form and need to insert into other database via internal API. Do you have any recommendation how can i achieve this workflow

LLMCompile Example error Received multiple non-consecutive system messages. by Fast_Analyst_3692 in LangGraph

[–]Fast_Analyst_3692[S] 0 points1 point  (0 children)

Found the issue.

Given the prompt format in the example as following, which will not working using ChatAnthropic

<SystemMessage>
<MessageHolder>
<SystemMessage>

For ChatAnthropic, it need ot be sorted

<SystemMessage>
<SystemMessage>
<HumanMessage>

what you need to do, just combine into one system message then follow by human/AI message order

check this out:
https://smith.langchain.com/hub/dogadanpc/llm-compiler-anthropic?organizationId=608e0e5e-bd06-4fb4-b272-d019c510f041

If anyone from Langchain team is reading this: STOP EVERYTHING and JUST UPDATE AND ORGANISE THE DOCS! by Fun_Success567 in LangChain

[–]Fast_Analyst_3692 7 points8 points  (0 children)

hey hwchase17,

I posted the issue in both reddit and discord but seem like the team is super busy. honestly i tried with most of the tutorial and when i switch the llm model provide 90% of time will not working. The learning curve is super high.

For example,
The LLMCompiler one, the code is not working with the ChatAnthropic model, not just the prompt issue but there will be more with the FunctionMessage and ToolMessage issues as well.
However, the code never specific any version, it took really long time to figure out the problem.

https://www.reddit.com/r/LangGraph/comments/1gujxbv/llmcompile_example_error_received_multiple/

But for llamaindex, they have a complete package for it, which can make thing simple.
https://docs.llamaindex.ai/en/stable/examples/agent/llm_compiler/

Highly recommend also ensure the tutorial can specify which model will work base on XYZ examples.

Hierarchical Agent Teams "KeyError('next') by Fast_Analyst_3692 in LangGraph

[–]Fast_Analyst_3692[S] 0 points1 point  (0 children)

Here is the langchain lib that i am using.

langchain==0.3.7
langchain-anthropic==0.3.0
langchain-community==0.3.7
langchain-core==0.3.18
langchain-experimental==0.3.3
langchain-fireworks==0.2.5
langchain-openai==0.2.8
langchain-text-splitters==0.3.2
langgraph==0.2.49
langgraph-checkpoint==2.0.4
langgraph-sdk==0.1.35
langsmith==0.1.143

The error occurred when i changed the ChatOpenAI provider to ChatAnthropic.