Skip to content

Commit 351a4f7

Browse files
committed
Fix type for RAG Web Browser
1 parent 73b8ab6 commit 351a4f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sources/platform/integrations/ai/openai_assistants.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The OpenAI Assistants can access OpenAI knowledge base ([vector store](https://p
1515

1616
Unlike Custom GPT, OpenAI Assistants are available via API, enabling integration with Apify to automatically update assistant data and deliver real-time information, improving the quality of answers.
1717

18-
In this tutorial, we’ll start by demonstrating how to create an assistant and integrate real-time data using function calling with the [RAG-Web-Browser](https://apify.com/apify/rag-web-browser).
18+
In this tutorial, we’ll start by demonstrating how to create an assistant and integrate real-time data using function calling with the [RAG Web Browser](https://apify.com/apify/rag-web-browser).
1919
Next, we’ll show how to save data from Apify Actors into the OpenAI Vector Store for easy retrieval through [file-search](https://platform.openai.com/docs/assistants/tools/file-search).
2020

2121
## Real-time search data for OpenAI Assistant
@@ -224,7 +224,7 @@ def submit_tool_outputs(run_):
224224
d = json.loads(tool.function.arguments)
225225
output = call_rag_web_browser(query=d["query"], max_results=d["maxResults"])
226226
tool_output.append(ToolOutput(tool_call_id=tool.id, output=json.dumps(output)))
227-
print("RAG-Web-Browser added as a tool output.")
227+
print("RAG Web Browser added as a tool output.")
228228

229229
return client.beta.threads.runs.submit_tool_outputs_and_poll(thread_id=run_.thread_id, run_id=run_.id, tool_outputs=tool_output)
230230

0 commit comments

Comments
 (0)