Comments

You must log in or register to comment.

iacolippo t1_j95ffj7 wrote

If you use the OpenAI models inside langchain, then yes.

11

westeast1000 OP t1_j95j8by wrote

I see. So i guess its unusable for any serious use cases in companies due to regulations and policies. Thanks for the response I thought i was missing something because I never see people question this

3

tdls_to t1_j95pqh9 wrote

according to open AI TOS you can send them an email to opt out of them using your prompts for model training because the right to the "content" you send to their API is perpetually yours. they also license the outputs to you to use as see fit (since you're paying them to use the service). so, on paper, you can use it for "serious" purposes without an issue. that said, the legal aspects of this whole thing is still work in progress and I strongly suggest you discuss the implications with your internal legal team before sending any sensitive company info

5

rshah4 t1_j974uys wrote

I believe going through azure to access the openai models, Microsoft has said they would delete data after 30 days. You could also consider using open source models like Flan-T5, but that means you need to host/setup the model.

4

machineko t1_j9dgblo wrote

You can use langchain with open source models like Flan-T5 or GPT-J as well. Just need to deploy them as an API endpoint and point to it.

3