有效地组织您的任务可以显着提高生产力并减轻压力。为了帮助用户实现这一目标,我使用 lyzr automata sdk 和 openai 的 gpt-4 turbo 创建了一个待办事项列表生成器 应用程序。该应用程序会根据您的项目名称、子任务和任何其他注释来生成清晰且可操作的待办事项列表。这是构建这个有用的应用程序的分步指南。
设置环境
首先,我们需要导入所需的库并设置环境,包括openai api密钥。
import streamlit as st from lyzr_automata.ai_models.openai import openaimodel from lyzr_automata import agent, task from pil import image from lyzr_automata.tasks.task_literals import inputtype, outputtype import os
设置 openai api 密钥
os.environ["openai_api_key"] = st.secrets["apikey"]
创建应用程序标题和简介
然后我们设置标题并提供简要介绍,引导用户输入哪些信息。
st.title("to-do list generator?") st.markdown("welcome! effortlessly organize your tasks with our intuitive to-do list generator. simply provide the main project name and a few subtasks, and we'll create a clear and actionable list for you.") st.markdown("1) mention your task name.") st.markdown("2) mention your subtasks.") st.markdown("3) mention any additional notes or comments.") input = st.text_input("please enter the above details:", placeholder="type here")
初始化 openai 模型
我们使用特定参数初始化 openai 模型以完成文本。该模型将生成待办事项列表。
open_ai_text_completion_model = openaimodel( api_key=st.secrets["apikey"], parameters={ "model": "gpt-4-turbo-preview", "temperature": 0.2, "max_tokens": 1500, }, )
定义生成函数
生成功能使用openai模型根据用户输入生成全面的待办事项列表。该函数定义了代理的角色和任务提示。
def generation(input): generator_agent = agent( role="expert to-do list organizer", prompt_persona="your task is to create a comprehensive to-do list based on the details provided by the user, including task name, subtasks, and any additional notes.") prompt = """ [prompts here] """ generator_agent_task = task( name="generation", model=open_ai_text_completion_model, agent=generator_agent, instructions=prompt, default_input=input, output_type=outputtype.text, input_type=inputtype.text, ).execute() return generator_agent_task
添加生成按钮
我们添加了一个按钮,单击时会触发待办事项列表的生成。
if st.button("Generate!"): solution = generation(input) st.markdown(solution)
待办事项列表生成器应用程序通过分析任务名称、子任务和附加注释,帮助用户创建有组织且可操作的待办事项列表。利用 lyzr automata sdk 和 openai 的 gpt-4 turbo 的强大功能,该应用程序为高效任务管理提供了实用的解决方案。
应用程序链接:https://to-dogenerator-lyzr.streamlit.app/
源代码:https://github.com/isakshay007/to-do_generator
尝试构建您自己的待办事项列表生成器应用程序版本,体验人工智能驱动的任务组织的好处!如果您有任何疑问或需要进一步帮助,请随时联系 lyzr。
网站:lyzr.ai
预订演示:预订演示
discord:加入我们的 discord 社区
slack:加入我们的 slack 频道