Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Diwank Tomer <[email protected]>
  • Loading branch information
Diwank Tomer committed Aug 16, 2024
1 parent a4e49a0 commit be7471b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion agents-api/agents_api/clients/temporal.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
temporal_client_cert,
temporal_namespace,
temporal_private_key,
temporal_task_queue,
temporal_worker_url,
)
from ..worker.codec import pydantic_data_converter
Expand Down Expand Up @@ -49,6 +50,6 @@ async def run_task_execution_workflow(
return await client.start_workflow(
TaskExecutionWorkflow.run,
args=[execution_input, start, previous_inputs],
task_queue="memory-task-queue",
task_queue=temporal_task_queue,
id=str(job_id),
)
5 changes: 4 additions & 1 deletion agents-api/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ check = [
"format",
"typecheck",
]
test = "ward"
codegen = """
datamodel-codegen \
--input ../openapi.yaml \
Expand Down Expand Up @@ -94,3 +93,7 @@ datamodel-codegen \
--openapi-scopes schemas \
--keep-model-order \
--disable-timestamp"""

[tool.poe.tasks.test]
env = { AGENTS_API_TESTING = "true" }
cmd = "ward test"

0 comments on commit be7471b

Please sign in to comment.