helicone-test
v1.0.0
Published
 
Readme
Helicone Test Suite
A full-stack example project demonstrating:
- Node.js API prompt testing using Jest
- Mocking OpenAI with
nock - GitHub Actions CI for Node.js
- Python SDK implementation using LangChain + OpenAI
- Python testing with
pytest - GitHub CI for Python
📂 Project Structure
helicone-test/ ├── prompts/ ├── tests/ ├── python/ │ ├── test_generate_idea.py │ ├── run.py │ └── requirements.txt ├── .github/ │ └── workflows/ │ ├── nodejs.yml │ └── python-ci.yml ├── package.json ├── jest.config.cjs └── README.md
🚀 Getting Started
Node.js
pnpm install
pnpm testPython
cd python
pip install -r requirements.txt
pytest
python run.py