Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sources/platform/actors/publishing/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ To learn more visit our [Actors in Store](https://docs.apify.com/platform/actor

## Maintain public Actors

While private Actors don't necessarily require ongoing maintenance, public Actors demand a higher level of resonsibility. Since public Actors are available on the [Apify Store](https://apify.com/store) and may be used by other users, an unmaintained public Actor could negatively impact those who depend on it.
While private Actors don't necessarily require ongoing maintenance, public Actors demand a higher level of responsibility. Since public Actors are available on the [Apify Store](https://apify.com/store) and may be used by other users, an unmaintained public Actor could negatively impact those who depend on it.

To ensure long-term quality and improve your chances of successfully monetizing your Actors, we recommend reserving approximately 2 hours per week for maintenance tasks, such as:

Expand Down
6 changes: 3 additions & 3 deletions sources/platform/integrations/ai/openai_assistants.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The OpenAI Assistants can access OpenAI knowledge base ([vector store](https://p

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.

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).
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).
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).

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

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

Expand Down Expand Up @@ -417,5 +417,5 @@ for m in client.beta.threads.messages.list(thread_id=run.thread_id):

- [OpenAI Assistants](https://platform.openai.com/docs/assistants/overview)
- [OpenAI function calling](https://platform.openai.com/docs/assistants/tools/function-calling)
- [RAG Web Browser](https://apify.com/apify/-browser) Actor
- [RAG Web Browser](https://apify.com/apify/rag-web-browser) Actor
- [OpenAI Vector Store Integration](https://apify.com/jiri.spilka/openai-vector-store-integration) Actor