Most teams asking how to use their own AI model in Salesforce do not actually want a research project. They want Salesforce to stay the operator workflow while the model call goes to an endpoint they already control or pay for.
In practice that usually means Prompt Builder or another Salesforce AI entry point on one side, and OpenAI or another LLM endpoint on the other. If the first question is really about what leaves Salesforce during that call, start with Does Salesforce AI Send Data to OpenAI?.
The practical problem is rarely just credentials. In many setups Salesforce sends a request shape that the external model endpoint does not accept as-is. That can mean extra parameters, provider-specific fields, or a payload format the target endpoint does not expect.
So the real work is usually not "connect model". The real work is inspecting the raw request, removing unsupported fields, and forwarding a clean payload to the model endpoint. Teams evaluating a custom model path often compare it with narrower workflows like AI Follow-Up Email for Salesforce or Salesforce AI Summary.
The most reliable pattern is Salesforce to proxy to model endpoint, not Salesforce directly to every provider-specific API shape. That proxy can be a lightweight Apex layer or another controlled endpoint that normalizes the request before forwarding it.
This is usually the right place to log the request shape, strip fields the model cannot process, and keep provider changes isolated from the Salesforce side. Related pages: Security, Salesforce AI Tools Without Einstein, Does Salesforce AI Send Data to OpenAI?, and Guides.
Can you use OpenAI or another external model from Salesforce?
Yes, but the request and endpoint compatibility should be validated carefully because not every external model endpoint accepts the same payload shape.
Does bring-your-own-model automatically mean lower cost?
Not necessarily. Credit behavior, packaging, and support boundaries should be verified in your own org because those details can change.
When is a custom model setup overkill?
When the real goal is a narrow record brief or next-step workflow rather than a broader AI platform project.
Where does DealScope fit?
DealScope is the narrower option when the team mainly wants record-level understanding and follow-up support inside Salesforce rather than a custom model architecture project. For that angle, continue with AI Follow-Up Email for Salesforce or Salesforce AI for Lead, Opportunity, and Account Summary.
Next step:
If you are comparing architecture options, review Does Salesforce AI Send Data to OpenAI?. If you mainly need a seller workflow instead of a custom model stack, start with Salesforce AI Summary.