Skip to content

Commit b8c83bf

Browse files
committed
create a release v0.13.2
1 parent 59b8a7d commit b8c83bf

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bindings/ceylon/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ceylon"
3-
version = "0.13.1"
3+
version = "0.13.2"
44
edition = "2021"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

bindings/ceylon/ceylon/runner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from pydantic import BaseModel
66

7-
from .ceylon import Workspace, WorkspaceConfig, AgentCore, AgentDefinition, uniffi_set_event_loop
7+
from .ceylon import *
88

99

1010
class RunnerInput(BaseModel):

bindings/ceylon/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = { file = "README.md", content-type = "text/markdown" }
1010
license = { file = "LICENSE" }
1111
keywords = ["Aritifical Intelligence", "Multi Agent Systems", "CEYLON", "Ceylon Aritficial Intelligence."]
1212
dynamic = []
13-
version = "0.13.1"
13+
version = "0.13.2"
1414
classifiers = [
1515
"Programming Language :: Rust",
1616
"Programming Language :: Python :: Implementation :: CPython",

bindings/ceylon/tests/llm_agen_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def publish_content(content: str, name: str):
5353
async def main():
5454
runner = AgentRunner(workspace_name="ceylon-ai")
5555
llm_lib = ChatOllama(model="phi3:instruct")
56-
llm_lib = ChatOpenAI(model="gpt-4o")
56+
# llm_lib = ChatOpenAI(model="gpt-4o")
5757
runner.register_agent(LLMAgent(
5858
name="writer",
5959
position="Assistant Writer",

0 commit comments

Comments
 (0)