Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 1.03 KB

quickstart.mdx

File metadata and controls

50 lines (32 loc) · 1.03 KB
title description
Quickstart
Setup a Palico app locally in just a few steps.

Requirements

Setup and Installation

npx palico init <project-name>

This starter LLM application uses OpenAI so you will need to add an OpenAI API key in your .env file. You can get your OpenAI API key from https://platform.openai.com/api-keys.

OPENAI_API_KEY=<your-openai-api-key>
npm start

The starter app comes with a few example agents. You can modify them in the src/agents/<agent-name>/index.ts file.

What's Next?