admin管理员组文章数量:1393850
I'm using a prompt that looks like this:
Give a relevance score for company "Warple", by looking up their website warpledata
And code like this:
completion = client.chatpletions.create(
model="gpt-4o",
messages=[
{
"role": "user",
"content": prompt
}
],
response_format={ "type": "json_object" }
)
But I have a feeling the model is not using the website to gather more information. How do I enable this?
本文标签: large language modelHow do I allow web search for GPT using the openai SDKStack Overflow
版权声明:本文标题:large language model - How do I allow web search for GPT using the openai SDK? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744082237a2587859.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论