有效地组织任务可以显着提高工作效率并减轻压力。为了帮助用户实现这一目标,我使用 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 频道
以上是使用 Lyzr SDK 构建待办事项列表生成器的详细内容。更多信息请关注PHP中文网其他相关文章!