Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat:Updated Together AI models #347

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/Providers/TogetherAI/src/Predefined/AllModels.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,11 @@ public class GemmaInstruct2BModel(TogetherAiProvider provider) : TogetherAiModel
public class GemmaInstruct7BModel(TogetherAiProvider provider) : TogetherAiModel(provider, TogetherAiModelIds.GemmaInstruct7B);


/// <inheritdoc cref="TogetherAiModelIds.JedifyLlama38BChat"/>
/// <param name="provider">Open Router Provider Instance</param>
public class JedifyLlama38BChatModel(TogetherAiProvider provider) : TogetherAiModel(provider, TogetherAiModelIds.JedifyLlama38BChat);


/// <inheritdoc cref="TogetherAiModelIds.VicunaV1513B"/>
/// <param name="provider">Open Router Provider Instance</param>
public class VicunaV1513BModel(TogetherAiProvider provider) : TogetherAiModel(provider, TogetherAiModelIds.VicunaV1513B);
Expand Down
11 changes: 11 additions & 0 deletions src/Providers/TogetherAI/src/TogetherAiModelIds.cs
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,17 @@
/// </summary>
GemmaInstruct7B,

/// <summary>
/// Name: Jedify - Llama 3 8B Chat <br/>
/// Organization: Meta <br/>
/// Context Length: 8192 <br/>
/// Prompt Cost: $0/MTok <br/>
/// Completion Cost: $0/MTok <br/>
/// Description: Llama 3 is an auto-regressive language model that uses an optimized transformer architecture. The tuned versions use supervised fine-tuning (SFT) and reinforcement learning with human feedback (RLHF) to align with human preferences for helpfulness and safety. <br/>
/// HuggingFace Url: <a href="https://huggingface.co/jedify/Llama-3-8b-chat-hf">https://huggingface.co/jedify/Llama-3-8b-chat-hf</a>
/// </summary>
JedifyLlama38BChat,

/// <summary>
/// Name: Vicuna v1.5 (13B) <br/>
/// Organization: LM Sys <br/>
Expand Down Expand Up @@ -510,7 +521,7 @@
/// Description: DBRX Instruct is a mixture-of-experts (MoE) large language model trained from scratch by Databricks. DBRX Instruct specializes in few-turn interactions. <br/>
/// HuggingFace Url: <a href="https://huggingface.co/medaltv/dbrx-instruct">https://huggingface.co/medaltv/dbrx-instruct</a>
/// </summary>
ReservedDbrxInstruct,

Check warning on line 524 in src/Providers/TogetherAI/src/TogetherAiModelIds.cs

View workflow job for this annotation

GitHub Actions / Build and test / Build, test and publish

If 'TogetherAiModelIds.ReservedDbrxInstruct' is not used in the current implementation, remove it. Otherwise give it a meaningful name. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1700)

Check warning on line 524 in src/Providers/TogetherAI/src/TogetherAiModelIds.cs

View workflow job for this annotation

GitHub Actions / Build and test / Build, test and publish

If 'TogetherAiModelIds.ReservedDbrxInstruct' is not used in the current implementation, remove it. Otherwise give it a meaningful name. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1700)

Check warning on line 524 in src/Providers/TogetherAI/src/TogetherAiModelIds.cs

View workflow job for this annotation

GitHub Actions / Build and test / Build, test and publish

If 'TogetherAiModelIds.ReservedDbrxInstruct' is not used in the current implementation, remove it. Otherwise give it a meaningful name. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1700)

Check warning on line 524 in src/Providers/TogetherAI/src/TogetherAiModelIds.cs

View workflow job for this annotation

GitHub Actions / Build and test / Build, test and publish

If 'TogetherAiModelIds.ReservedDbrxInstruct' is not used in the current implementation, remove it. Otherwise give it a meaningful name. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1700)

Check warning on line 524 in src/Providers/TogetherAI/src/TogetherAiModelIds.cs

View workflow job for this annotation

GitHub Actions / Build and test / Build, test and publish

If 'TogetherAiModelIds.ReservedDbrxInstruct' is not used in the current implementation, remove it. Otherwise give it a meaningful name. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1700)

Check warning on line 524 in src/Providers/TogetherAI/src/TogetherAiModelIds.cs

View workflow job for this annotation

GitHub Actions / Build and test / Build, test and publish

If 'TogetherAiModelIds.ReservedDbrxInstruct' is not used in the current implementation, remove it. Otherwise give it a meaningful name. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1700)

Check warning on line 524 in src/Providers/TogetherAI/src/TogetherAiModelIds.cs

View workflow job for this annotation

GitHub Actions / Build and test / Build, test and publish

If 'TogetherAiModelIds.ReservedDbrxInstruct' is not used in the current implementation, remove it. Otherwise give it a meaningful name. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1700)

Check warning on line 524 in src/Providers/TogetherAI/src/TogetherAiModelIds.cs

View workflow job for this annotation

GitHub Actions / Build and test / Build, test and publish

If 'TogetherAiModelIds.ReservedDbrxInstruct' is not used in the current implementation, remove it. Otherwise give it a meaningful name. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1700)

/// <summary>
/// Name: LLaMA-2 Chat (13B) <br/>
Expand Down
1 change: 1 addition & 0 deletions src/Providers/TogetherAI/src/TogetherAiModelProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public static class TogetherAiModelProvider
{ TogetherAiModelIds.Platypus2Instruct70B, new ChatModels("garage-bAInd/Platypus2-70B-instruct",4096,9.000000000000001E-07,9.000000000000001E-07)},
{ TogetherAiModelIds.GemmaInstruct2B, new ChatModels("google/gemma-2b-it",8192,1.0000000000000001E-07,1.0000000000000001E-07)},
{ TogetherAiModelIds.GemmaInstruct7B, new ChatModels("google/gemma-7b-it",8192,2.0000000000000002E-07,2.0000000000000002E-07)},
{ TogetherAiModelIds.JedifyLlama38BChat, new ChatModels("jedify/Llama-3-8b-chat-hf",8192,0,0)},
{ TogetherAiModelIds.VicunaV1513B, new ChatModels("lmsys/vicuna-13b-v1.5",4096,3E-07,3E-07)},
{ TogetherAiModelIds.VicunaV157B, new ChatModels("lmsys/vicuna-7b-v1.5",4096,2.0000000000000002E-07,2.0000000000000002E-07)},
{ TogetherAiModelIds.ReservedDbrxInstruct, new ChatModels("medaltv/dbrx-instruct",0,1.2E-06,1.2E-06)},
Expand Down