openai.ts 152 B

123456789
  1. import http from '@/lib/http'
  2. const openai = {
  3. store_record(data: any) {
  4. return http.post('/chat_gpt_record', data)
  5. }
  6. }
  7. export default openai