File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 1- import { Context } from 'cordis'
1+ import { Context , Schema } from 'cordis'
22import { CortexLunaService } from './services/cortex-luna-service.ts'
33
44export * from './messages/index.ts'
@@ -18,3 +18,9 @@ export * from './vector-stores/index.ts'
1818export function apply ( ctx : Context ) {
1919 ctx . plugin ( CortexLunaService )
2020}
21+
22+ export const name = 'cortexluna'
23+
24+ export interface Config { }
25+
26+ export const Config : Schema < Config > = Schema . object ( { } )
Original file line number Diff line number Diff line change @@ -68,6 +68,8 @@ export function apply(ctx: Context, config: Config) {
6868 } )
6969}
7070
71+ export const name = '@cortexluna/openai-compatible'
72+
7173type FetchResponse = globalThis . Response
7274
7375declare module '@cordisjs/plugin-http' {
You can’t perform that action at this time.
0 commit comments