cleaned up the LLM providers.

This commit is contained in:
Xiaohan-Tian
2025-08-16 16:25:45 -07:00
parent cf4f3edb30
commit 429efaf629
6 changed files with 100 additions and 319 deletions
+10
View File
@@ -0,0 +1,10 @@
/**
* Constants related to LLM providers and API interactions
*/
// Protocol markers and special character combinations used in LLM communications
export const LLM_PROTOCOL = {
SSE_DATA_PREFIX: 'data: ',
SSE_DONE_MARKER: '[DONE]',
SEGMENT_SEPARATOR: '\n\n'
} as const;