index.ts 486 B

1234567891011121314151617181920212223
  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. export default {
  12. openai,
  13. anthropic,
  14. azure_openai,
  15. replicate,
  16. huggingface_hub,
  17. wenxin,
  18. tongyi,
  19. spark,
  20. minimax,
  21. chatglm,
  22. }