d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
55 lines
2.2 KiB
TypeScript
55 lines
2.2 KiB
TypeScript
/**
|
|
* @vitest-environment node
|
|
*/
|
|
import { describe, expect, it } from 'vitest'
|
|
import { contextDevClassifyNaicsTool } from '@/tools/context_dev/classify_naics'
|
|
import { contextDevGetBrandTool } from '@/tools/context_dev/get_brand'
|
|
import { CONTEXT_DEV_CREDIT_USD } from '@/tools/context_dev/hosting'
|
|
import { contextDevScrapeMarkdownTool } from '@/tools/context_dev/scrape_markdown'
|
|
import { contextDevScreenshotTool } from '@/tools/context_dev/screenshot'
|
|
import type { ToolConfig } from '@/tools/types'
|
|
|
|
function cost(tool: ToolConfig<any, any>, params: any, output: Record<string, unknown>) {
|
|
const pricing = tool.hosting?.pricing
|
|
if (!pricing || pricing.type !== 'custom') throw new Error('Expected custom pricing')
|
|
const result = pricing.getCost(params, output)
|
|
return typeof result === 'number' ? { cost: result } : result
|
|
}
|
|
|
|
describe('Context.dev hosted key pricing', () => {
|
|
it('declares hosting with the shared env prefix and BYOK provider on every tool', () => {
|
|
for (const tool of [
|
|
contextDevScrapeMarkdownTool,
|
|
contextDevScreenshotTool,
|
|
contextDevGetBrandTool,
|
|
contextDevClassifyNaicsTool,
|
|
]) {
|
|
expect(tool.hosting?.envKeyPrefix).toBe('CONTEXT_DEV_API_KEY')
|
|
expect(tool.hosting?.byokProviderId).toBe('context_dev')
|
|
}
|
|
})
|
|
|
|
it('charges the reported credits at the per-credit rate for a 1-credit scrape', () => {
|
|
expect(cost(contextDevScrapeMarkdownTool, {}, { creditsConsumed: 1 }).cost).toBeCloseTo(
|
|
CONTEXT_DEV_CREDIT_USD
|
|
)
|
|
})
|
|
|
|
it('charges the reported credits at the per-credit rate for a 5-credit screenshot', () => {
|
|
expect(cost(contextDevScreenshotTool, {}, { creditsConsumed: 5 }).cost).toBeCloseTo(
|
|
5 * CONTEXT_DEV_CREDIT_USD
|
|
)
|
|
})
|
|
|
|
it('charges the reported credits at the per-credit rate for a 10-credit brand lookup', () => {
|
|
expect(cost(contextDevGetBrandTool, {}, { creditsConsumed: 10 }).cost).toBeCloseTo(
|
|
10 * CONTEXT_DEV_CREDIT_USD
|
|
)
|
|
})
|
|
|
|
it('charges zero when the response has no credit accounting', () => {
|
|
expect(cost(contextDevClassifyNaicsTool, {}, { creditsConsumed: null }).cost).toBe(0)
|
|
expect(cost(contextDevClassifyNaicsTool, {}, {}).cost).toBe(0)
|
|
})
|
|
})
|