for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
# from llama_index.llms.openai import OpenAI
# assistant_model = "gpt-4-1106-preview"
# def run(client):
# assistant = client.beta.assistants.create(
# name="TCR Assistant",
# instructions=TCR_PROMPT,
# tools=[{"type": "retrieval"}],
# model=assistant_model,
# file_ids=[]
# )
# run(client=OpenAI())