-
Notifications
You must be signed in to change notification settings - Fork 78
feat: Return Actor card in markdown #195
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
Changes from all commits
d78d12a
c1f4ce1
e5aea96
6768391
87e6910
e193079
d306e57
f6bca50
0d09c4d
d11f788
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -32,9 +32,9 @@ export const getUserRunsList: ToolEntry = { | |
| tool: { | ||
| name: HelperTools.ACTOR_RUN_LIST_GET, | ||
| actorFullName: HelperTools.ACTOR_RUN_LIST_GET, | ||
| description: `Gets a paginated list of Actor runs with run details, datasetId, and keyValueStoreId. | ||
| Filter by status: READY (not allocated), RUNNING (executing), SUCCEEDED (finished), FAILED (failed), | ||
| TIMING-OUT (timing out), TIMED-OUT (timed out), ABORTING (being aborted), ABORTED (aborted).`, | ||
| description: `Gets a paginated list of Actor runs with run details, datasetId, and keyValueStoreId.\n` | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why do we use the
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Other tools already used that. I find noindent ugly. I'm sorry. If we agree on using template literals with noindent across the codebase, I'll adapt. So what do you say @MQ37 @MichalKalita
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I also like how the
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I usually prefer ``` because of simplicity. It's easier to copy/paste content.
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok, I've created issue for that: #197 |
||
| + 'Filter by status: READY (not allocated), RUNNING (executing), SUCCEEDED (finished), FAILED (failed),\n' | ||
| + 'TIMING-OUT (timing out), TIMED-OUT (timed out), ABORTING (being aborted), ABORTED (aborted).', | ||
| inputSchema: zodToJsonSchema(getUserRunsListArgs), | ||
| ajvValidate: ajv.compile(zodToJsonSchema(getUserRunsListArgs)), | ||
| call: async (toolArgs) => { | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.