You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

124 lines
4.0 KiB

11 months ago
  1. const MODELS = {
  2. "accounts/fireworks/models/llama-v3p2-3b-instruct": {
  3. id: "accounts/fireworks/models/llama-v3p2-3b-instruct",
  4. organization: "Meta",
  5. name: "Llama 3.2 3B Instruct",
  6. maxLength: 131072,
  7. },
  8. "accounts/fireworks/models/llama-v3p2-1b-instruct": {
  9. id: "accounts/fireworks/models/llama-v3p2-1b-instruct",
  10. organization: "Meta",
  11. name: "Llama 3.2 1B Instruct",
  12. maxLength: 131072,
  13. },
  14. "accounts/fireworks/models/llama-v3p1-405b-instruct": {
  15. id: "accounts/fireworks/models/llama-v3p1-405b-instruct",
  16. organization: "Meta",
  17. name: "Llama 3.1 405B Instruct",
  18. maxLength: 131072,
  19. },
  20. "accounts/fireworks/models/llama-v3p1-70b-instruct": {
  21. id: "accounts/fireworks/models/llama-v3p1-70b-instruct",
  22. organization: "Meta",
  23. name: "Llama 3.1 70B Instruct",
  24. maxLength: 131072,
  25. },
  26. "accounts/fireworks/models/llama-v3p1-8b-instruct": {
  27. id: "accounts/fireworks/models/llama-v3p1-8b-instruct",
  28. organization: "Meta",
  29. name: "Llama 3.1 8B Instruct",
  30. maxLength: 131072,
  31. },
  32. "accounts/fireworks/models/llama-v3-70b-instruct": {
  33. id: "accounts/fireworks/models/llama-v3-70b-instruct",
  34. organization: "Meta",
  35. name: "Llama 3 70B Instruct",
  36. maxLength: 8192,
  37. },
  38. "accounts/fireworks/models/mixtral-8x22b-instruct": {
  39. id: "accounts/fireworks/models/mixtral-8x22b-instruct",
  40. organization: "mistralai",
  41. name: "Mixtral MoE 8x22B Instruct",
  42. maxLength: 65536,
  43. },
  44. "accounts/fireworks/models/mixtral-8x7b-instruct": {
  45. id: "accounts/fireworks/models/mixtral-8x7b-instruct",
  46. organization: "mistralai",
  47. name: "Mixtral MoE 8x7B Instruct",
  48. maxLength: 32768,
  49. },
  50. "accounts/fireworks/models/firefunction-v2": {
  51. id: "accounts/fireworks/models/firefunction-v2",
  52. organization: "Fireworks AI",
  53. name: "Firefunction V2",
  54. maxLength: 8192,
  55. },
  56. "accounts/fireworks/models/firefunction-v1": {
  57. id: "accounts/fireworks/models/firefunction-v1",
  58. organization: "Fireworks AI",
  59. name: "FireFunction V1",
  60. maxLength: 32768,
  61. },
  62. "accounts/fireworks/models/gemma2-9b-it": {
  63. id: "accounts/fireworks/models/gemma2-9b-it",
  64. organization: "Google",
  65. name: "Gemma 2 9B Instruct",
  66. maxLength: 8192,
  67. },
  68. "accounts/fireworks/models/llama-v3-70b-instruct-hf": {
  69. id: "accounts/fireworks/models/llama-v3-70b-instruct-hf",
  70. organization: "Hugging Face",
  71. name: "Llama 3 70B Instruct (HF version)",
  72. maxLength: 8192,
  73. },
  74. "accounts/fireworks/models/llama-v3-8b-instruct": {
  75. id: "accounts/fireworks/models/llama-v3-8b-instruct",
  76. organization: "Hugging Face",
  77. name: "Llama 3 8B Instruct",
  78. maxLength: 8192,
  79. },
  80. "accounts/fireworks/models/llama-v3-8b-instruct-hf": {
  81. id: "accounts/fireworks/models/llama-v3-8b-instruct-hf",
  82. organization: "Hugging Face",
  83. name: "Llama 3 8B Instruct (HF version)",
  84. maxLength: 8192,
  85. },
  86. "accounts/fireworks/models/mixtral-8x7b-instruct-hf": {
  87. id: "accounts/fireworks/models/mixtral-8x7b-instruct-hf",
  88. organization: "Hugging Face",
  89. name: "Mixtral MoE 8x7B Instruct (HF version)",
  90. maxLength: 32768,
  91. },
  92. "accounts/fireworks/models/mythomax-l2-13b": {
  93. id: "accounts/fireworks/models/mythomax-l2-13b",
  94. organization: "Gryphe",
  95. name: "MythoMax L2 13b",
  96. maxLength: 4096,
  97. },
  98. "accounts/fireworks/models/phi-3-vision-128k-instruct": {
  99. id: "accounts/fireworks/models/phi-3-vision-128k-instruct",
  100. organization: "Microsoft",
  101. name: "Phi 3.5 Vision Instruct",
  102. maxLength: 8192,
  103. },
  104. "accounts/fireworks/models/starcoder-16b": {
  105. id: "accounts/fireworks/models/starcoder-16b",
  106. organization: "BigCode",
  107. name: "StarCoder 15.5B",
  108. maxLength: 8192,
  109. },
  110. "accounts/fireworks/models/starcoder-7b": {
  111. id: "accounts/fireworks/models/starcoder-7b",
  112. organization: "BigCode",
  113. name: "StarCoder 7B",
  114. maxLength: 8192,
  115. },
  116. "accounts/fireworks/models/yi-01-ai/yi-large": {
  117. id: "accounts/fireworks/models/yi-01-ai/yi-large",
  118. organization: "01.AI",
  119. name: "Yi-Large",
  120. maxLength: 32768,
  121. },
  122. };
  123. module.exports.MODELS = MODELS;