Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ jobs:
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Install uv
uses: astral-sh/setup-uv@v4

- name: Generate API specifications
run: |
# Generate transcripts API spec
cd fern/apis/transcripts
uv run python generate_spec.py

# Generate LLM Gateway API spec
cd ../llm_gateway
uv run python generate_spec.py

- name: Convert specs to JSON
run: pnpm run to-json

Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -129,3 +129,6 @@ dist
.yarn/install-state.gz
.pnp.*
.DS_Store

# Python
__pycache__/
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.11
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@
npm run-script lint
```

## Running Tests

Check warning on line 17 in README.md

View workflow job for this annotation

GitHub Actions / lint

[vale] reported by reviewdog 🐶 [AssemblyAI.Headings] Use sentence-style capitalization for 'Running Tests'. Raw Output: {"message": "[AssemblyAI.Headings] Use sentence-style capitalization for 'Running Tests'. ", "location": {"path": "README.md", "range": {"start": {"line": 17, "column": 4}}}, "severity": "WARNING"}

The test files require an AssemblyAI API key. Set the `ASSEMBLYAI_API_KEY` environment variable before running tests:

```bash
export ASSEMBLYAI_API_KEY=your_api_key_here
```

## Fern

### SDKs
Expand Down
Loading
Loading