d25d482dc2
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
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
69 lines
2.3 KiB
TypeScript
69 lines
2.3 KiB
TypeScript
import { z } from 'zod'
|
||
import { DEFAULT_RERANKER_MODEL, rerankerModelSchema } from '@/lib/knowledge/reranker-models'
|
||
|
||
export const knowledgeSearchTagFilterSchema = z.object({
|
||
tagName: z.string(),
|
||
tagSlot: z.string().optional(),
|
||
fieldType: z.enum(['text', 'number', 'date', 'boolean']).optional(),
|
||
operator: z.string().default('eq'),
|
||
value: z.union([z.string(), z.number(), z.boolean()]),
|
||
valueTo: z.union([z.string(), z.number()]).optional(),
|
||
})
|
||
|
||
export const knowledgeSearchBodySchema = z
|
||
.object({
|
||
knowledgeBaseIds: z.union([
|
||
z.string().min(1, 'Knowledge base ID is required'),
|
||
z.array(z.string().min(1)).min(1, 'At least one knowledge base ID is required'),
|
||
]),
|
||
query: z
|
||
.string()
|
||
.optional()
|
||
.nullable()
|
||
.transform((val) => val || undefined),
|
||
topK: z
|
||
.number()
|
||
.min(1)
|
||
.max(100)
|
||
.optional()
|
||
.nullable()
|
||
.default(10)
|
||
.transform((val) => val ?? 10),
|
||
tagFilters: z
|
||
.array(knowledgeSearchTagFilterSchema)
|
||
.optional()
|
||
.nullable()
|
||
.transform((val) => val || undefined),
|
||
rerankerEnabled: z.boolean().optional().default(false),
|
||
rerankerModel: rerankerModelSchema.optional().default(DEFAULT_RERANKER_MODEL),
|
||
/**
|
||
* Number of vector results sent to Cohere as the documents array for reranking. Capped at 100
|
||
* so each rerank call stays within a single Cohere search unit (1 query × ≤100 docs); see
|
||
* `RERANK_MODEL_PRICING` in `providers/models.ts`.
|
||
*/
|
||
rerankerInputCount: z
|
||
.number()
|
||
.int('rerankerInputCount must be an integer')
|
||
.min(1, 'rerankerInputCount must be at least 1')
|
||
.max(100, 'rerankerInputCount cannot exceed 100')
|
||
.optional()
|
||
.nullable()
|
||
.transform((val) => val ?? undefined),
|
||
rerankerApiKey: z
|
||
.string()
|
||
.optional()
|
||
.nullable()
|
||
.transform((val) => val || undefined),
|
||
})
|
||
.refine(
|
||
(data) => {
|
||
const hasQuery = data.query && data.query.trim().length > 0
|
||
const hasTagFilters = data.tagFilters && data.tagFilters.length > 0
|
||
return hasQuery || hasTagFilters
|
||
},
|
||
{
|
||
message: 'Please provide either a search query or tag filters to search your knowledge base',
|
||
}
|
||
)
|
||
export type KnowledgeSearchBody = z.output<typeof knowledgeSearchBodySchema>
|