Skip to content

Commit

Permalink
Adds LargeLanguageModelClient
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfarrell76 committed Nov 3, 2023
1 parent cc75dcb commit 84ad75a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Transcend Inc.",
"name": "@transcend-io/privacy-types",
"description": "Core enums and types that can be useful when interacting with Transcend's public APIs.",
"version": "4.53.0",
"version": "4.54.0",
"homepage": "https://github.com/transcend-io/privacy-types",
"repository": {
"type": "git",
Expand Down
9 changes: 9 additions & 0 deletions src/largeLanguageModels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,12 @@ export const ChatCompletionMessage = t.type({

/** Type override */
export type ChatCompletionMessage = t.TypeOf<typeof ChatCompletionMessage>;

/**
* LLM model clients
*/
export enum LargeLanguageModelClient {
OpenAi = 'openai',
Claude = 'claude',
Llama = 'llama',
}

0 comments on commit 84ad75a

Please sign in to comment.