Passed
Pull Request — main (#9)
by Ray
01:19
created

menderbot.assistant   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 1
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 1
rs 10
c 0
b 0
f 0
wmc 0
1
# from llama_index.llms.openai import OpenAI
2
3
4
# assistant_model = "gpt-4-1106-preview"
5
6
7
# def run(client):
8
#     assistant = client.beta.assistants.create(
9
#         name="TCR Assistant",
10
#         instructions=TCR_PROMPT,
11
#         tools=[{"type": "retrieval"}],
12
#         model=assistant_model,
13
#         file_ids=[]
14
#     )
15
16
17
# run(client=OpenAI())
18