index.ts 581 B

12345678910111213141516171819202122232425262728
  1. import openai from './openai'
  2. import anthropic from './anthropic'
  3. import azure_openai from './azure_openai'
  4. import replicate from './replicate'
  5. import huggingface_hub from './huggingface_hub'
  6. import wenxin from './wenxin'
  7. import tongyi from './tongyi'
  8. import spark from './spark'
  9. import minimax from './minimax'
  10. import chatglm from './chatglm'
  11. import xinference from './xinference'
  12. import openllm from './openllm'
  13. export default {
  14. openai,
  15. anthropic,
  16. azure_openai,
  17. replicate,
  18. huggingface_hub,
  19. wenxin,
  20. tongyi,
  21. spark,
  22. minimax,
  23. chatglm,
  24. xinference,
  25. openllm,
  26. }