Projects
Projects in Amorphic help define AI experiences by combining instructions, chat behavior, linked knowledge bases, and connected agents.
Below is the sample resource definition file for Project:
{
"rProject": {
"Type": "Project",
"Properties": {
"ProjectName": "cicd_test_project",
"Description": "Base AI project for CICD QA testing",
"Keywords": [
"ai",
"project",
"cicd"
],
"Category": "general",
"EnforceResourceACLs": false,
"ChatbotName": "assisto",
"Instructions": "You are Assisto, a simple QA project bot.",
"Greeting": "Hello there",
"ChatSuggestions": [
"Summarize this workspace",
"What CICD resources exist here?"
],
"EnableSmartOrchestration": false,
"Knowledgebases": [],
"Agents": []
}
}
}
Project has dependencies on Tag.
Dependent resources should not be deleted before the primary resource; attempting to do so may lead to failures or inconsistencies during the deletion process.
Referencing this Resource
Below are the common keys that can be used in the DependsOn function to retrieve details of this resource.
Supported Keys
| Key | Description |
|---|---|
| ProjectName | Returns the ProjectName value of this resource |
| ProjectId | Returns the ProjectId value of this resource |
For additional supported keys, refer to the API definition document for the respective resource type.
Example
To reference this schedule from another resource, use !DependsOn with logical name and property in the format <logicalResourceName>.<PropertyName>.
Example: {"!DependsOn": "rProject.ProjectId"}