Files
herolib/lib/ai/client/aiclient.v
2025-11-22 11:58:46 +02:00

16 lines
190 B
V

module client
@[heap]
pub struct AIClient {
pub mut:
llms AIClientLLMs
// Add other fields as needed
}
pub fn new() !AIClient {
llms := llms_init()!
return AIClient{
llms: llms
}
}