You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
run_executor_worker_1 | {
run_executor_worker_1 |"step_type": "Question",
run_executor_worker_1 |"content": "What is the objective of the latest message from the UF CISE department?"
run_executor_worker_1 | },
from:
asst=client.beta.assistants.create(
name="Data visualizer",
model="gpt-4-turbo",
instructions="""You are an extraordinary academic advisor, you can access all publically available information reguarding UF CISE department (through web_retrieval).Please try your best to answe the student's questions and help them to find the information they need.Always cite your sources whenever you retrieve information from the web (through web_retrieval), you must share your sources via markdown.""",
tools=[{"type": "web_retrieval"}],
)
thread=client.beta.threads.create(
messages=[
{"role": "user", "content": "Find my advisors for the CISE department at UF. It is found where it says 'During peak periods, response time may be longer – up to seven days.'"},
]
)
run=client.beta.threads.runs.create_and_poll(
assistant_id=asst.id,
thread_id=thread.id,
)
messages=client.beta.threads.messages.list(
order="desc",
thread_id=thread.id
)
print(messages.model_dump_json(indent=2))
The text was updated successfully, but these errors were encountered:
generated:
from:
The text was updated successfully, but these errors were encountered: