An internal repository for building rough agentic workflow apps and exposing them via a simple API for demos.
- GRAM_PROD_API_KEY: https://app.getgram.ai/speakeasy-self/default/settings
- OPENAI_API_KEY: https://platform.openai.com/settings/organization/api-keys
We expose our execute API via a simple express server:
cd typescript
npm install
npm run start
We expose our execute API via a simple FastAPI server:
cd python
pip install -r requirements.txt
python main.py
replace with any agent workflow name
curl -s -X POST http://127.0.0.1:9000/execute/gtm-agent
curl -s -X POST http://127.0.0.1:9000/execute/gtm-agent/{framework} \
-H "Content-Type: application/json" \
-d '{"company": "speakeasy"}'
LANGCHAIN JS HAS A BREAKING CHANGE TO TOO CALLING. USE 0.3.23 UNTIL THEY FIX IT