We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
abc-def
julep.toml
julep.yaml
<template>/src
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://example.com/julep.schema.json", "title": "Julep Project Configuration Schema", "type": "object", "properties": { "agents": { "type": "array", "items": { "type": "object", "properties": { "definition": { "type": "string", "description": "Path to the file defining the agent." }, "canonical_name": { "type": "string", "description": "A unique reference name for the agent." } }, "required": ["definition"], "additionalProperties": false } }, "tasks": { "type": "array", "items": { "type": "object", "properties": { "agent_id": { "type": "string", "description": "Reference to an agent ID or a templated expression (e.g. {agents[0].id})." }, "definition": { "type": "string", "description": "Path to the file defining the task workflow." } }, "required": ["agent_id", "definition"], "additionalProperties": false } }, "tools": { "type": "array", "items": { "type": "object", "properties": { "agent_id": { "type": "string", "description": "Reference to an agent ID or a templated expression (e.g. {agents['awesome-agent'].id})." }, "definition": { "type": "string", "description": "Path to the tool configuration or definition file." } }, "required": ["agent_id", "definition"], "additionalProperties": false } } }, "additionalProperties": false }
The text was updated successfully, but these errors were encountered:
Vedantsahai18
No branches or pull requests
abc-def
#2julep.toml
tojulep.yaml
#3julep.yaml
to the new schema #4<template>/src
#5Schema for
julep.yaml
The text was updated successfully, but these errors were encountered: