Config graph model (#411)

* config to specify graph model
This commit is contained in:
arkml 2026-02-27 15:52:19 +05:30 committed by GitHub
parent cccb7a8a65
commit 9df1bb6765
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 166 additions and 86 deletions

View file

@ -10,4 +10,5 @@ export const LlmProvider = z.object({
export const LlmModelConfig = z.object({
provider: LlmProvider,
model: z.string(),
knowledgeGraphModel: z.string().optional(),
});