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
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@ default-members = [
]

[workspace.package]
version = "0.10.0"
version = "0.11.0"
authors = ["demml <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/demml/potatohead"

[workspace.dependencies]
baked-potato = { path = "crates/baked_potato", version = "0.10.0" }
potato-agent = { path = "crates/potato_agent", version = "0.10.0" }
potato-provider = { path = "crates/potato_provider", version = "0.10.0" }
potatohead-macro = { path = "crates/potato_macro", version = "0.10.0" }
potato-type = { path = "crates/potato_type", version = "0.10.0" }
potato-workflow = { path = "crates/potato_workflow", version = "0.10.0" }
potato-util = { path = "crates/potato_util", version = "0.10.0" }
potato-head = { path = "crates/potato_head", version = "0.10.0" }
potato-state = { path = "crates/potato_state", version = "0.10.0" }
baked-potato = { path = "crates/baked_potato", version = "0.11.0" }
potato-agent = { path = "crates/potato_agent", version = "0.11.0" }
potato-provider = { path = "crates/potato_provider", version = "0.11.0" }
potatohead-macro = { path = "crates/potato_macro", version = "0.11.0" }
potato-type = { path = "crates/potato_type", version = "0.11.0" }
potato-workflow = { path = "crates/potato_workflow", version = "0.11.0" }
potato-util = { path = "crates/potato_util", version = "0.11.0" }
potato-head = { path = "crates/potato_head", version = "0.11.0" }
potato-state = { path = "crates/potato_state", version = "0.11.0" }

anyhow = "1.0.93"
base64 = "0.*"
Expand Down
2 changes: 1 addition & 1 deletion py-potato/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
version = "0.10.0"
version = "0.11.0"
description = ""
authors = [
{name = "Thorrester", email = "<[email protected]>"},
Expand Down
4 changes: 2 additions & 2 deletions py-potato/python/potato_head/_potato_head.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import datetime
from pathlib import Path
from typing import Any, Dict, Generic, List, Optional, TypeAlias, Union, overload
from typing import Any, Dict, Generic, List, Optional, Type, TypeAlias, Union, overload

from typing_extensions import TypeVar

Expand Down Expand Up @@ -227,7 +227,7 @@ class Prompt(Generic[OutputType]):
provider: Provider | str,
system_instructions: Optional[PromptMessage] = None,
model_settings: Optional[ModelSettings | OpenAIChatSettings | GeminiSettings | AnthropicSettings] = None,
output_type: Optional[OutputType] = None,
output_type: Optional[Type[OutputType]] = None,
) -> None:
"""Initialize a Prompt object.

Expand Down
2 changes: 1 addition & 1 deletion py-potato/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.