index.ts 624 B

1234567891011121314151617181920212223242526272829
  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. import localai from './localai'
  14. export default {
  15. openai,
  16. anthropic,
  17. azure_openai,
  18. replicate,
  19. huggingface_hub,
  20. wenxin,
  21. tongyi,
  22. spark,
  23. minimax,
  24. chatglm,
  25. xinference,
  26. openllm,
  27. localai,
  28. }