Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Commit

Permalink
Bumped version; fixed minimal example; added gitignore.
Browse files Browse the repository at this point in the history
  • Loading branch information
jzanecook committed Sep 25, 2023
1 parent 56a446c commit 8ca92b4
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.env
env
__pycache__
.vscode
.idea
/.idea/
venv/

# Ignore everything in the generated directory
/generated/*

# Don't ignore .gitkeep files in the generated directory
!/generated/.gitkeep
.venv
dist

# Ignore workspaces generated by agent examples
/workspace/*
2 changes: 1 addition & 1 deletion examples/minimal.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async def main():

while (
step := await api_instance.execute_agent_task_step(
task_id=task_id, step_request_body=StepRequestBody(input=i)
task_id=task_id, step_request_body=StepRequestBody(input=str(i))
)
) and step.is_last is False:
print("The response of AgentApi->execute_agent_task_step:\n")
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "agent-protocol-client"
version = "0.2.3"
version = "0.2.4"
description = "Agent Communication Protocol Client"
authors = ["AI Engineers Foundation <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 8ca92b4

Please sign in to comment.