mirror of
https://github.com/andy-stack/vaultkeeper-ai.git
synced 2026-07-22 06:42:03 +00:00
- Deleted highlight-default.min.css, katex.min.css, and markdown.css as they are no longer needed. - Implemented StreamingMarkdownService for improved markdown processing with support for math and syntax highlighting. - Added StreamingService for handling streaming requests to the Gemini API with error handling and chunk parsing. - Introduced styles_old.css for enhanced code block styling and better readability.
8 lines
No EOL
233 B
TypeScript
8 lines
No EOL
233 B
TypeScript
export enum AIProvider {
|
|
Gemini = "Gemini",
|
|
OpenAI = "OpenAI"
|
|
};
|
|
|
|
export enum AIProviderURL {
|
|
Gemini = "https://generativelanguage.googleapis.com/v1beta/models/gemini-2.5-flash:streamGenerateContent?key=API_KEY&alt=sse"
|
|
} |