Skip to content

Latest commit

 

History

History

Cultural_Grant_Content_Customizer

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Cultural Grant Content Customizer

Experience the power of AI with the Cultural Grant Content Customizer app, that is crafted to generate compelling statements unique to every cultural organization! Users can input their specific variables to construct an insightful production outlining the organization's cultural identity and tangible & intangible impacts. The striking feature lies in its customized cultural significance statement, emphasizing on the potential cultural loss if the organization fails to get funding and the level of enhancement the grant could add to its cultural influence.

To run this app online: Cultural Grant Content Customizer Online

Run Cultural Grant Content Customizer Online

To learn more about AI Apps for Grant Writer use-cases in the Grant Writing - Cultural Organizations industry, read How to Innovate Grant Writing with AI for Cultural Events

What is HeroML?

HeroML is an AI Prompt Chain/Workflow interpreter for Apps built on https://hero.page

To see other apps, visit the Hero Apps page or explore AI Apps for all industries in the blog section

For more documentation, visit Hero docs, and learn about AI App Workflows

Download VSCode Syntax Highlighter Ext. here

Run with HeroCLI (Requires OpenAI Token)

Installation

To install the HeroML CLI tool, you need to have Node.js and npm (comes with Node.js) installed on your machine. If you don't have these, please install them first.

Then, run the following command in your terminal:

npm install -g heroml

This will install the HeroML CLI tool globally on your system, allowing you to use the hero command from any directory.

If you don't want to install it globally, you can run:

npm install heroml

and use it like:

npx hero run ./cultural_grant_content_customizer.heroml

We'll be using hero run ... in this tutorial for simplicity.

Configuration

Before using the HeroML CLI tool, you need to configure your OpenAI API key.

Create a heroconfig.json file in your home directory with the following content:

{
  "openaiApiKey": "your-openai-api-key"
}

Replace "your-openai-api-key" with your actual OpenAI API key.

Usage

To run a HeroML script, use the run command followed by the path to your script:

hero run ./cultural_grant_content_customizer.heroml

You can provide initial variable values as command-line options. For example, if your script expects a variable named number_of_colors, you can provide its value as follows:

hero run --number_of_colors 4 ./cultural_grant_content_customizer.heroml

If you do not provide a value for a variable, the HeroML CLI tool will prompt you to enter it interactively.

Output Options

You can specify the output directory and the filename of the output file using command-line options:

  • The -o or --output-dir option allows you to specify the output directory. By default, it is ./outputs/.
hero run --output-dir /custom/output/directory ./cultural_grant_content_customizer.heroml
  • The -f or --filename option allows you to specify the filename of the output file. By default, it is response_TIMESTAMP.json.
hero run --filename custom_filename.json ./cultural_grant_content_customizer.heroml

The CLI tool writes the output to a JSON file in the specified directory. It will print the path of the output file to the console:

Success! Output written to /custom/output/directory/custom_filename.json