Creating an AI Assistant

Creating an AI assistant allows you to attach a persistent vector store. By attaching a vector store to an assistant, you can ask the assistant to quickly search through and summarize information, significantly reduce hallucinations, and maintain control over your data by deleting it at any time. One of the main driving factors for hallucinations is a lack of data available around a particular topic. By using retrieval-augmented generation (RAG) techniques, we are able to provide the assistant with information it can use in its response, thus enhancing the accuracy and reliability of the AI assistant.


To build your own OpenAI assistant:

  1. Sign up or sign into ChatGPT by selecting this link.
  2. Access the OpenAI Playground.
  3. In the left navigation panel, select Assistants.
  4. Enter a Name for your assistant.
  5. Provide your assistant with specific Instructions on what you want it to do and how you want it to respond to you. See example.
  6. Select the Model you wish to use, gpt-4o is currently the most advanced (and cheapest) option from OpenAI.
  7. Enable File search.
  8. Select + Files to choose the files this assistant should use to answer questions.
  9. Enter your message to your Assistant.
  10. Select Run to start testing responses.

  11. Download these instructions in PDF format.

An image of the OpenAI playground screen showing the Navigation panel, the assistant settings, and the conversation thread.

Learn More

The paper Agent Hospital: A Simulacrum of Hospital with Evolvable Medical Agents is authored by a collaborative team from the Institute for AI Research (AIR) and the Department of Computer Science and Technology at Tsinghua University, China. The primary authors include Junkai Li, Siyu Wang, Meng Zhang, Weitao Li, Yunghwei Lai, Xinhui Kang, Weizhi Ma, and Yang Liu.

2 Minute Papers Summary Video

In this simulated environment, autononmous AI agents, or assistants, representing patients, nurses, and doctors interact using large language models (LLMs). The core goal is to train a doctor agent to treat illness effectively without requiring manually labeled data. Experiments demonstrate that doctor agents in Agent Hospital can continually improve their diagnostic and treatment accuracy achieving state of the art performance on MedQA - a medical dataset focusing on respritory diseases - demonstrating the potential for real-world applications.