How to set default state using `Annotation` in `Langgraph`

I am trying to use Annotation to define my state in Langgraph since it seems to be the way they are doing in v0.2. I dont seem to able to set a default value or get the state value from intial state i am passing inside the invoke. I am trying to use the case where we dont have to use a reducer since it is will automatically replace the value with the last value. Does anyone know what I am doing wrong?

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>import { END, START, StateGraph, Annotation } from "@langchain/langgraph";
import { AIMessage, BaseMessage } from "@langchain/core/messages";
// Define the state structure with channels
const ConfigState = Annotation.Root({
greeting: Annotation<string>({ default: "Bonjour!" }), // Set the default value here
messages: Annotation<BaseMessage[]>({
reducer: (left: BaseMessage[], right: BaseMessage | BaseMessage[]) => {
if (Array.isArray(right)) {
return left.concat(right);
}
return left.concat([right]);
},
default: () => [],
}),
});
console.log(ConfigState);
const callModel1 = async (state: typeof ConfigState.State) => {
console.log(`-----message inside callModel1 @ start-----: `, state.greeting);
return { greeting: "Hola!" }; // Update the greeting with the new value
};
const callModel2 = async (state: typeof ConfigState.State) => {
console.log(`-----message inside callModel2 @ start-----: `, state.greeting);
return { greeting: "Hi!" }; // Update the greeting with the new value
};
// Create the workflow with the main node and end node
const workflow = new StateGraph(ConfigState)
.addNode("agent", callModel1)
.addNode("agent2", callModel2)
.addEdge(START, "agent")
.addEdge("agent", "agent2")
.addEdge("agent2", END); // Connect the agent node to the END node
const initialState = { greeting: "Hello!" }; // Define your initial state here
const result = await workflow.compile().invoke({ state: initialState }); // Pass the initial state when invoking the workflow
console.log(result);
</code>
<code>import { END, START, StateGraph, Annotation } from "@langchain/langgraph"; import { AIMessage, BaseMessage } from "@langchain/core/messages"; // Define the state structure with channels const ConfigState = Annotation.Root({ greeting: Annotation<string>({ default: "Bonjour!" }), // Set the default value here messages: Annotation<BaseMessage[]>({ reducer: (left: BaseMessage[], right: BaseMessage | BaseMessage[]) => { if (Array.isArray(right)) { return left.concat(right); } return left.concat([right]); }, default: () => [], }), }); console.log(ConfigState); const callModel1 = async (state: typeof ConfigState.State) => { console.log(`-----message inside callModel1 @ start-----: `, state.greeting); return { greeting: "Hola!" }; // Update the greeting with the new value }; const callModel2 = async (state: typeof ConfigState.State) => { console.log(`-----message inside callModel2 @ start-----: `, state.greeting); return { greeting: "Hi!" }; // Update the greeting with the new value }; // Create the workflow with the main node and end node const workflow = new StateGraph(ConfigState) .addNode("agent", callModel1) .addNode("agent2", callModel2) .addEdge(START, "agent") .addEdge("agent", "agent2") .addEdge("agent2", END); // Connect the agent node to the END node const initialState = { greeting: "Hello!" }; // Define your initial state here const result = await workflow.compile().invoke({ state: initialState }); // Pass the initial state when invoking the workflow console.log(result); </code>
import { END, START, StateGraph, Annotation } from "@langchain/langgraph";
import { AIMessage, BaseMessage } from "@langchain/core/messages";

// Define the state structure with channels
const ConfigState = Annotation.Root({
    greeting: Annotation<string>({ default: "Bonjour!" }), // Set the default value here
    messages: Annotation<BaseMessage[]>({
        reducer: (left: BaseMessage[], right: BaseMessage | BaseMessage[]) => {
            if (Array.isArray(right)) {
                return left.concat(right);
            }
            return left.concat([right]);
        },
        default: () => [],
    }),
});

console.log(ConfigState);

const callModel1 = async (state: typeof ConfigState.State) => {
    console.log(`-----message inside callModel1 @ start-----: `, state.greeting);
    return { greeting: "Hola!" }; // Update the greeting with the new value
};

const callModel2 = async (state: typeof ConfigState.State) => {
    console.log(`-----message inside callModel2 @ start-----: `, state.greeting);
    return { greeting: "Hi!" }; // Update the greeting with the new value
};

// Create the workflow with the main node and end node
const workflow = new StateGraph(ConfigState)
    .addNode("agent", callModel1)
    .addNode("agent2", callModel2)
    .addEdge(START, "agent")
    .addEdge("agent", "agent2")
    .addEdge("agent2", END); // Connect the agent node to the END node

const initialState = { greeting: "Hello!" }; // Define your initial state here

const result = await workflow.compile().invoke({ state: initialState }); // Pass the initial state when invoking the workflow

console.log(result);

results:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>AnnotationRoot {
lc_graph_name: 'AnnotationRoot',
spec: {
greeting: LastValue {
ValueType: undefined,
UpdateType: undefined,
lc_graph_name: 'LastValue',
value: undefined
},
messages: BinaryOperatorAggregate {
ValueType: undefined,
UpdateType: undefined,
lc_graph_name: 'BinaryOperatorAggregate',
value: [],
operator: [Function: reducer],
initialValueFactory: [Function: default]
}
}
}
-----message inside callModel1 @ start-----: null
-----message inside callModel2 @ start-----: Hola!
{ greeting: 'Hi!', messages: [] }
</code>
<code>AnnotationRoot { lc_graph_name: 'AnnotationRoot', spec: { greeting: LastValue { ValueType: undefined, UpdateType: undefined, lc_graph_name: 'LastValue', value: undefined }, messages: BinaryOperatorAggregate { ValueType: undefined, UpdateType: undefined, lc_graph_name: 'BinaryOperatorAggregate', value: [], operator: [Function: reducer], initialValueFactory: [Function: default] } } } -----message inside callModel1 @ start-----: null -----message inside callModel2 @ start-----: Hola! { greeting: 'Hi!', messages: [] } </code>
AnnotationRoot {
  lc_graph_name: 'AnnotationRoot',
  spec: {
    greeting: LastValue {
      ValueType: undefined,
      UpdateType: undefined,
      lc_graph_name: 'LastValue',
      value: undefined
    },
    messages: BinaryOperatorAggregate {
      ValueType: undefined,
      UpdateType: undefined,
      lc_graph_name: 'BinaryOperatorAggregate',
      value: [],
      operator: [Function: reducer],
      initialValueFactory: [Function: default]
    }
  }
}
-----message inside callModel1 @ start-----:  null
-----message inside callModel2 @ start-----:  Hola!
{ greeting: 'Hi!', messages: [] }

We cannot use Annotation<string>() with a default value since it uses LastValue in the background which does not accept a default value. We can only pass values in the state. To get the same functionality, we need to extend Annotation by creating pseudo reducer function and pass the default

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>// Helper function to create an Annotation with default value behavior
function AnnotationWithDefault<T>(defaultValue: T) {
return Annotation<T>({
value: (currentValue: T, update?: T) => update || currentValue, // Prioritize update value
default: () => defaultValue, // Set default value
});
}
</code>
<code>// Helper function to create an Annotation with default value behavior function AnnotationWithDefault<T>(defaultValue: T) { return Annotation<T>({ value: (currentValue: T, update?: T) => update || currentValue, // Prioritize update value default: () => defaultValue, // Set default value }); } </code>
// Helper function to create an Annotation with default value behavior
function AnnotationWithDefault<T>(defaultValue: T) {
    return Annotation<T>({
        value: (currentValue: T, update?: T) => update || currentValue, // Prioritize update value
        default: () => defaultValue, // Set default value
    });
}

we can then do :

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>// Define the state structure with a default value for greeting
const GraphAnnotation = Annotation.Root({
greeting: AnnotationWithDefault("Hola!"), // Only pass the default value
});
</code>
<code>// Define the state structure with a default value for greeting const GraphAnnotation = Annotation.Root({ greeting: AnnotationWithDefault("Hola!"), // Only pass the default value }); </code>
// Define the state structure with a default value for greeting
const GraphAnnotation = Annotation.Root({
    greeting: AnnotationWithDefault("Hola!"), // Only pass the default value
});

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật