config.ts 533 B

1234567891011121314151617181920212223242526272829
  1. export const AnthropicConfig = {
  2. model: {
  3. model: "claude-instant-1",
  4. summarizeModel: "claude-instant-1",
  5. max_tokens_to_sample: 8192,
  6. temperature: 0.5,
  7. top_p: 0.7,
  8. top_k: 5,
  9. },
  10. provider: {
  11. name: "Anthropic" as const,
  12. endpoint: "https://api.anthropic.com",
  13. apiKey: "",
  14. customModels: "",
  15. version: "2023-06-01",
  16. models: [
  17. {
  18. name: "claude-instant-1",
  19. available: true,
  20. },
  21. {
  22. name: "claude-2",
  23. available: true,
  24. },
  25. ],
  26. },
  27. };