Skip to content
forked from hwchase17/vulcan

Vulcan is a chat agent built by Arcade and Langgraph

Notifications You must be signed in to change notification settings

ArcadeAI/vulcan

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

Vulcan

Langgraph React agent that uses Arcade tools.

Set Up Backend (Agent)

Install the backend React Agent Server

cd backend
pip install -e .
pip install "langgraph-cli[inmem]"

Then copy the following to a .env file in the backend root directory

export SUPABASE_URL=
export SUPABASE_SERVICE_KEY=
export SUPABASE_JWT_SECRET=
export ARCADE_API_KEY=
export OPENAI_API_KEY=
export LANGSMITH_API_KEY=
export LANGSMITH_TRACING=true

Set Up Frontend

Copy the following to a .env file in the frontend root directory

VITE_SUPABASE_URL=
VITE_SUPABASE_ANON_KEY=
VITE_LANGCHAIN_API_URL=http://localhost:2024
VITE_ASSISTANT_ID=agent
npm i pnpm --global
pnpm install
pnpm run build
pnpm run dev

If running locally and using supabase Auth for the login, you will need to go enable the Google Provider.

Languages

  • TypeScript 81.0%
  • Python 14.9%
  • CSS 2.4%
  • JavaScript 1.5%
  • HTML 0.2%