langgraph-executor 0.0.1a8__py3-none-any.whl → 0.0.1a9__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1 +1 @@
1
- __version__ = "0.0.1a8"
1
+ __version__ = "0.0.1a9"
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: langgraph-executor
3
- Version: 0.0.1a8
3
+ Version: 0.0.1a9
4
4
  Summary: LangGraph python RPC server executable by the langgraph-go orchestrator.
5
5
  Requires-Python: >=3.11
6
6
  Requires-Dist: grpcio>=1.73.1
7
7
  Requires-Dist: langgraph>=0.6.5
8
- Requires-Dist: protobuf>=4.25.0
8
+ Requires-Dist: protobuf<7,>=6.31.1
9
9
  Requires-Dist: psutil>=7.0.0
10
10
  Description-Content-Type: text/markdown
11
11
 
@@ -1,4 +1,4 @@
1
- langgraph_executor/__init__.py,sha256=KAPJkcGl_qD06MHQn_0nXbx0-og1WAbX5hnxiuRGS9I,24
1
+ langgraph_executor/__init__.py,sha256=55DsmqvzZ8HtFbKSzDAXojSSUudl42kGXvhH1JSTPgE,24
2
2
  langgraph_executor/common.py,sha256=KXDN25OlISvm1mhKP9SU1z1c01tb_qcq6FVClaqP9Mw,15118
3
3
  langgraph_executor/example.py,sha256=TcfxgC9VfpZFliWnuVdJMllCDa8ji7vrSCRWnmdsUA8,900
4
4
  langgraph_executor/execute_task.py,sha256=_m-WyVODhShI29qzkK0DXSPoTY4E_izbuaT7F_fVZVw,7262
@@ -9,7 +9,6 @@ langgraph_executor/info_logger.py,sha256=kgoVnMxm_aloHal89NHfH_Qb9eixrqD0dHmgnrm
9
9
  langgraph_executor/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  langgraph_executor/serde.py,sha256=NgboZpj9z-WjFwSrhBPR4KOykAFBfM7QvoKz8UNJb7g,365
11
11
  langgraph_executor/server.py,sha256=EVwZjsO2S0qhhU9C_4e85gfrxyOCo3H72bBi28vSFIw,5134
12
- langgraph_executor/setup.sh,sha256=QI505EIya8sjEIohom6GDfFckFqOMF8bIEX-hSWcLUI,627
13
12
  langgraph_executor/stream_utils.py,sha256=snxlEoZe0d4ae3h_6Ct3zNzLV_ugvPANcr4VECYofwk,2974
14
13
  langgraph_executor/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
14
  langgraph_executor/client/patch.py,sha256=Lzzlz3AAz3AayYL8v18NGkjHGKgidkqdQbGHXjCAWBI,10653
@@ -31,6 +30,6 @@ langgraph_executor/pb/types_pb2.py,sha256=emoEFLS0FdUuGqIjCCINAYFr0LmGcOCyfXRLUX
31
30
  langgraph_executor/pb/types_pb2.pyi,sha256=6rnOefB1_ePyOzOKnC2rnlqS2YTmO6brSl6S31jSfSU,45022
32
31
  langgraph_executor/pb/types_pb2_grpc.py,sha256=EPv87wCc-6BNJ2xTNcb9d3ictDerK5cBt7qhd7EmJiQ,886
33
32
  langgraph_executor/pb/types_pb2_grpc.pyi,sha256=Dl8kkjhqb6F1Kt24mcFg7ppish4iKVfjRiiBxEjsMMA,413
34
- langgraph_executor-0.0.1a8.dist-info/METADATA,sha256=b1JYG8d_08F4dojuPpv-41iVtmy9I0Qzsqig68GFZkE,433
35
- langgraph_executor-0.0.1a8.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
36
- langgraph_executor-0.0.1a8.dist-info/RECORD,,
33
+ langgraph_executor-0.0.1a9.dist-info/METADATA,sha256=7hQrjLP-uFpecTXV8bqtA991tFz2wNnN5G8rQNei_TA,436
34
+ langgraph_executor-0.0.1a9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
35
+ langgraph_executor-0.0.1a9.dist-info/RECORD,,
@@ -1,29 +0,0 @@
1
- #!/bin/bash
2
-
3
- echo "Setting up Python environment..."
4
-
5
- # Create virtual environment if it doesn't exist
6
- if [ ! -d ".venv" ]; then
7
- echo "Creating virtual environment..."
8
- python -m venv .venv
9
- fi
10
-
11
- # Activate virtual environment
12
- source .venv/bin/activate
13
-
14
- # Install dependencies
15
- echo "Installing dependencies..."
16
- python -m pip install -r requirements.txt
17
-
18
- # Deactivate environment
19
- deactivate
20
-
21
- # Generate protobuf files
22
- # echo "Generating Python protobuf files..."
23
- # source .venv/bin/activate
24
- # ./generate_proto.sh
25
-
26
- echo "Python setup complete!"
27
- echo ""
28
- echo "To activate the environment:"
29
- echo " source .venv/bin/activate"