NithikaShree commited on
Commit
b8badbf
·
verified ·
1 Parent(s): b4169f9

Create state.py

Browse files
Files changed (1) hide show
  1. state.py +6 -0
state.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ from typing import TypedDict, Optional
2
+
3
+ class AgentState(TypedDict, total=False):
4
+ request: str
5
+ code: str
6
+ review: str