Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/patterns-use-cases/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"hypercorn",
"restate-sdk[serde]>=0.12.0",
"restate-sdk[serde]>=0.13.0",
"pydantic",
"httpx",
"stripe",
Expand Down
7 changes: 6 additions & 1 deletion python/templates/lambda/.claude/CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ ctx.service_send(
Call a service without using the generated client, but just String names.

```python {"CODE_LOAD::python/src/develop/agentsmd/actions.py#request_response_generic"} theme={null}
response = await ctx.generic_call(
response_bytes = await ctx.generic_call(
"MyObject", "my_handler", key="Mary", arg=json.dumps("Hi").encode("utf-8")
)
```
Expand Down Expand Up @@ -364,3 +364,8 @@ with restate.test_harness(app) as harness:
restate_client = harness.ingress_client()
print(restate_client.post("/greeter/greet", json="Alice").json())
```


---

> To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.restate.dev/llms.txt
2 changes: 1 addition & 1 deletion python/templates/lambda/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"pydantic>=2.10.6",
"restate-sdk[serde]>=0.12.0",
"restate-sdk[serde]>=0.13.0",
]

[tool.hatch.build.targets.wheel]
Expand Down
7 changes: 6 additions & 1 deletion python/templates/python/.claude/CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ ctx.service_send(
Call a service without using the generated client, but just String names.

```python {"CODE_LOAD::python/src/develop/agentsmd/actions.py#request_response_generic"} theme={null}
response = await ctx.generic_call(
response_bytes = await ctx.generic_call(
"MyObject", "my_handler", key="Mary", arg=json.dumps("Hi").encode("utf-8")
)
```
Expand Down Expand Up @@ -364,3 +364,8 @@ with restate.test_harness(app) as harness:
restate_client = harness.ingress_client()
print(restate_client.post("/greeter/greet", json="Alice").json())
```


---

> To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.restate.dev/llms.txt
7 changes: 6 additions & 1 deletion python/templates/python/.cursor/rules/AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ ctx.service_send(
Call a service without using the generated client, but just String names.

```python {"CODE_LOAD::python/src/develop/agentsmd/actions.py#request_response_generic"} theme={null}
response = await ctx.generic_call(
response_bytes = await ctx.generic_call(
"MyObject", "my_handler", key="Mary", arg=json.dumps("Hi").encode("utf-8")
)
```
Expand Down Expand Up @@ -364,3 +364,8 @@ with restate.test_harness(app) as harness:
restate_client = harness.ingress_client()
print(restate_client.post("/greeter/greet", json="Alice").json())
```


---

> To find navigation and other pages in this documentation, fetch the llms.txt file at: https://docs.restate.dev/llms.txt
2 changes: 1 addition & 1 deletion python/templates/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires-python = ">=3.11"
dependencies = [
"hypercorn>=0.17.3",
"pydantic>=2.10.6",
"restate-sdk[serde]>=0.12.0",
"restate-sdk[serde]>=0.13.0",
]

[tool.hatch.build.targets.wheel]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ requires-python = ">=3.11"
dependencies = [
"hypercorn>=0.17.3",
"pydantic>=2.10.6",
"restate-sdk[serde]>=0.12.0",
"restate-sdk[serde]>=0.13.0",
]

[tool.hatch.build.targets.wheel]
Expand Down
2 changes: 1 addition & 1 deletion python/tutorials/tour-of-workflows-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ dependencies = [
"hypercorn>=0.17.3",
"pydantic>=2.10.6",
"httpx",
"restate-sdk[serde]>=0.12.0",
"restate-sdk[serde]>=0.13.0",
]

[tool.hatch.build.targets.wheel]
Expand Down