Nuno Campos

Results 249 comments of Nuno Campos

Very true, good point. But eg Cohere instead of a test model has a test api key, feels hard to make this generic enough for all integrations?

yea not sure that statefulness is a principle we want to declare. but I get what you mean about memory, not sure of the best way to express it

No, this was only once, out of many similar requests. The same request (or as close to same as I could) repeated after didn’t trigger this error. On Sun, Jan...

Hi, No there are no foreign keys between these tables I can also confirm I'm not triggering any DDL ops from pg_net or go_cron. Note the issue is I'm not...

@michelp thanks for looking into this, fyi if it helps I get a similar error when running the following command ``` alter table model_metrics drop constraint model_metrics_operation_valid; ``` ```ERROR: cannot...

great, thank you, I was able to run the above now

We do support multiple input edges in more recent versions of langgraph, here's an example for the original issue above ```py class State(TypedDict): my_key: Annotated[str, operator.add] def up(state: State): pass...

hi @kenichinakanishi thanks for looking into this, given this arises from user error, `any` is a builtin function to work with iterables, not a typing annotation, I don't really want...

hi, @nadav-okami thanks for this, I'm making the serializer used by checkpoints configurable to more easily support this https://github.com/langchain-ai/langgraph/pull/305

We support max_iterations natively in langgraph through the config key `recursion_limit`: ``` app.invoke(..., {"recursion_limit": 15}) ```