Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
NithikaShree
/
multi_agent
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
NithikaShree
commited on
Jan 30
Commit
b8badbf
·
verified
·
1 Parent(s):
b4169f9
Create state.py
Browse files
Files changed (1)
hide
show
state.py
+6
-0
state.py
ADDED
Viewed
@@ -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