Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

task/step input were being confused with additional_input #101

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
7 changes: 5 additions & 2 deletions packages/sdk/js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ import Agent, {
type TaskInput,
} from 'agent-protocol'

async function taskHandler(taskInput: TaskInput | null): Promise<StepHandler> {
console.log(`task: ${taskInput}`)
async function taskHandler(
taskId: string,
taskInput: TaskInput | null
): Promise<StepHandler> {
console.log(`task ${taskId}: ${taskInput}`)

async function stepHandler(stepInput: StepInput | null): Promise<StepResult> {
console.log(`step: ${stepInput}`)
Expand Down
7 changes: 5 additions & 2 deletions packages/sdk/js/examples/minimal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ import Agent, {
type StepInput,
} from 'agent-protocol'

async function taskHandler(taskInput: TaskInput | null): Promise<StepHandler> {
console.log(`task: ${taskInput}`)
async function taskHandler(
taskId: string,
taskInput: TaskInput | null
): Promise<StepHandler> {
console.log(`task ${taskId}: ${taskInput}`)

async function stepHandler(stepInput: StepInput | null): Promise<StepResult> {
console.log(`step: ${stepInput}`)
Expand Down
20 changes: 16 additions & 4 deletions packages/sdk/js/src/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import {
type Task,
type TaskRequestBody,
StepStatus,
type AdditionalInput,
} from './models'
import {
createApi,
Expand All @@ -26,14 +27,18 @@ import { type Router } from 'express'
* A function that handles a step in a task.
* Returns a step result.
*/
export type StepHandler = (input: StepInput | null) => Promise<StepResult>
export type StepHandler = (
input: StepInput | null,
additionalInput: AdditionalInput | null
) => Promise<StepResult>
/**
* A function that handles a task.
* Returns a step handler.
*/
export type TaskHandler = (
taskId: string,
input: TaskInput | null
input: TaskInput | null,
additionalInput: AdditionalInput | null
) => Promise<StepHandler>

const tasks: Array<[Task, StepHandler]> = []
Expand Down Expand Up @@ -67,7 +72,11 @@ export const createAgentTask = async (
input: body?.input ?? null,
artifacts: [],
}
const stepHandler = await taskHandler(task.task_id, body?.input ?? null)
const stepHandler = await taskHandler(
task.task_id,
body?.input ?? null,
body?.additional_input ?? null
)
tasks.push([task, stepHandler])
return task
}
Expand Down Expand Up @@ -175,7 +184,10 @@ export const executeAgentTaskStep = async (
throw new Error(`Task with id ${taskId} not found`)
}
const handler = task[1]
const stepResult = await handler(body?.input ?? null)
const stepResult = await handler(
body?.input ?? null,
body?.additional_input ?? null
)
const step: Step = {
task_id: taskId,
step_id: uuid(),
Expand Down
50 changes: 31 additions & 19 deletions packages/sdk/js/src/models.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* Input parameters for the task. Any value is allowed.
* Input prompt for the task.
*/
export type TaskInput = any
export type TaskInput = string | null | undefined

/**
* Artifact that the task has produced. Any value is allowed.
Expand All @@ -10,19 +10,21 @@ export interface Artifact {
artifact_id: string
agent_created: boolean
file_name: string
relative_path: string | null
created_at: string
relative_path?: string | null
created_at?: string
}

/**
* Input parameters for the task step. Any value is allowed.
*/
export type StepInput = any
export type StepInput = string | null | undefined

/**
* Output that the task step has produced. Any value is allowed.
*/
export type StepOutput = any
export type StepOutput = string | null | undefined

export type AdditionalOutput = any

export enum StepStatus {
CREATED = 'created',
Expand All @@ -31,6 +33,22 @@ export enum StepStatus {
}

export interface Step {
input?: StepInput
additional_input?: AdditionalInput

/**
* The ID of the task this step belongs to.
*/
task_id: string
/**
* The ID of the task step.
*/
step_id: string
/**
* Current status of step
*/
status: StepStatus

/**
* The name of the task step
*/
Expand All @@ -39,31 +57,22 @@ export interface Step {
* Output of the task step
*/
output?: StepOutput
additional_output?: AdditionalOutput

/**
* A list of artifacts that the step has produced.
*/
artifacts?: Artifact[]
/**
* Whether this is the last step in the task.
* @default false
*/
is_last?: boolean
input?: StepInput
/**
* The ID of the task this step belongs to.
*/
task_id: string
/**
* The ID of the task step.
*/
step_id: string
/**
* Current status of step
*/
status: StepStatus
}

export interface StepRequestBody {
input?: StepInput
additional_input?: AdditionalInput
}

export interface StepResult {
Expand Down Expand Up @@ -99,4 +108,7 @@ export interface Task {

export interface TaskRequestBody {
input?: TaskInput
additional_input?: AdditionalInput
}

export type AdditionalInput = any
31 changes: 12 additions & 19 deletions schemas/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -400,8 +400,8 @@ components:
required:
- artifacts
- pagination
TaskInput:
description: Input parameters for the task. Any value is allowed.
AdditionalInput:
description: Additional input parameters for the task. Any value is allowed.
type: object
example: |-
{
Expand Down Expand Up @@ -448,14 +448,7 @@ components:
example: python/code
required:
- file
StepInput:
description: Input parameters for the task step. Any value is allowed.
type: object
example: |-
{
"file_to_refactor": "models.py"
}
StepOutput:
AdditionalOutput:
description: Output that the task step has produced. Any value is allowed.
type: object
example: |-
Expand All @@ -474,7 +467,7 @@ components:
example: Write 'Washington' to the file 'output.txt'.
nullable: true
additional_input:
$ref: '#/components/schemas/TaskInput'
$ref: '#/components/schemas/AdditionalInput'
Task:
allOf:
- $ref: '#/components/schemas/TaskRequestBody'
Expand Down Expand Up @@ -507,14 +500,14 @@ components:
example: Write the words you receive to the file 'output.txt'.
nullable: true
additional_input:
$ref: '#/components/schemas/StepInput'
$ref: '#/components/schemas/AdditionalInput'
Step:
allOf:
- $ref: '#/components/schemas/StepRequestBody'
- type: object
required:
- step_id
- task_id
- step_id
- status
- is_last
- artifacts
Expand All @@ -527,11 +520,6 @@ components:
description: The ID of the task step.
type: string
example: 6bb1801a-fd80-45e8-899a-4dd723cc602e
name:
description: The name of the task step.
type: string
example: Write to file
nullable: true
status:
description: The status of the task step.
type: string
Expand All @@ -540,13 +528,18 @@ components:
- created
- running
- completed
name:
description: The name of the task step.
type: string
example: Write to file
nullable: true
output:
description: Output of the task step.
type: string
example: "I am going to use the write_to_file command and write Washington to a file called output.txt <write_to_file('output.txt', 'Washington')"
nullable: true
additional_output:
$ref: '#/components/schemas/StepOutput'
$ref: '#/components/schemas/AdditionalOutput'
artifacts:
description: A list of artifacts that the step has produced.
type: array
Expand Down