Slide 16
Slide 16 text
チャンネルごとにプロンプトの設定できる機能: コード
2/2
Agent実行する部分
llm = ChatOpenAI(
model_name="gpt-3.5-turbo",
temperature=0,
)
executor = initialize_agent(
[
self.channel_configuration_thread_mode_tool,
self.channel_configuration_prompt_tool,
],
llm,
agent=AgentType.CHAT_ZERO_SHOT_REACT_DESCRIPTION,
)
result = await executor.arun(message)