mirror of
https://github.com/di-sukharev/opencommit.git
synced 2026-04-20 03:02:51 -04:00
- Fix inconsistent indentation across multiple engine files - Remove trailing whitespace and add missing newlines - Improve code formatting in prompt generation functions - Break long lines for better readability - Standardize spacing and brackets placement
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import { OpenAiConfig, OpenAiEngine } from './openAi';
|
|
|
|
interface GroqConfig extends OpenAiConfig {}
|
|
|
|
export class GroqEngine extends OpenAiEngine {
|
|
constructor(config: GroqConfig) {
|
|
config.baseURL = 'https://api.groq.com/openai/v1';
|
|
super(config);
|
|
}
|
|
}
|