Skip to content
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:

jobs:
static:
name: static (lint · types · build · package)
name: static (format · types · build · package)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
Expand All @@ -20,8 +20,8 @@ jobs:
node-version: 22
cache: npm
- run: npm ci
- name: Lint + format check (biome)
run: npm run lint
- name: Format check (prettier)
run: npm run format:check
- name: Type check
run: npm run typecheck
- name: Build
Expand Down
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dist
coverage
package-lock.json
7 changes: 7 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"printWidth": 150,
"tabWidth": 2,
"singleQuote": false,
"bracketSameLine": false,
"trailingComma": "es5"
}
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ All notable changes to `interfaze` are documented here. The format follows
Initial release — a typed wrapper over the OpenAI SDK for the Interfaze API.

### Added

- `Interfaze` client (composition over `openai@6`) exposing `chat.completions`, `models`, and `tasks.*`.
- `chat.completions.create()` returning `InterfazeChatCompletion` with typed `precontext`, `reasoning`, and `vcache`.
- `chat.completions.stream()` — an Interfaze-tolerant streaming helper (handles role-less deltas; surfaces `<think>`/`<precontext>`).
Expand Down
Loading