使用 Lyzr SDK 建立個人化自由助理

王林
發布: 2024-08-08 09:22:51
原創
549 人瀏覽過

自由工作提供了一個充滿機會和靈活性的世界,但它也帶來了一系列挑戰。 個人化自由職業助理應用程式旨在提供量身定制的技巧和策略,幫助自由工作者在職業生涯中取得成功。利用 Lyzr Automata SDK 和 OpenAI 的 GPT-4 Turbo,應用程式根據使用者輸入建立客製化計畫。

Building a Personalized Freelance Assistant using Lyzr SDK

設定環境

首先,我們需要導入必要的函式庫並設定我們的環境。

import streamlit as st
from lyzr_automata.ai_models.openai import OpenAIModel
from lyzr_automata import Agent, Task
from lyzr_automata.pipelines.linear_sync_pipeline import LinearSyncPipeline
from PIL import Image
from lyzr_automata.tasks.task_literals import InputType, OutputType
import os
登入後複製

設定 OpenAI API 金鑰

我們需要設定 OpenAI API 金鑰來存取 GPT-4 Turbo 模型。

os.environ["OPENAI_API_KEY"] = st.secrets["apikey"]
登入後複製

應用程式標題與簡介

接下來,我們設定應用程式的標題並提供簡短介紹,指導使用者如何使用個人化自由助理。

st.title("Freelance Assistant")
st.markdown("Welcome to Freelance Assistant, your personalized freelancing guide. Enter your career details and goals for customized tips and strategies to enhance your freelance journey.")
st.markdown("1) Mention your field of expertise.")
st.markdown("2) Mention your experience level.")
st.markdown("3) Mention your income goals.")
st.markdown("4) Mention your preferred work-life balance.")
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,
    },
)
登入後複製

定義產生函數

此函數使用 Lyzr Automata SDK 建立一個代理,根據使用者的輸入提供個人化的自由職業建議。

def generation(input):
    generator_agent = Agent(
        role="Expert FREELANCING CONSULTANT",
        prompt_persona=f"Your task is to OFFER personalized freelancing tips and strategic advice that aligns with the user's specific details.")
    prompt = f"""
[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("Assist!"):
    solution = generation(input)
    st.markdown(solution)
登入後複製

自由職業助理應用程式旨在提供個人化的提示和策略,幫助自由工作者提升他們的職業生涯。透過利用 Lyzr Automata 和 OpenAI 的 GPT-4 Turbo 的強大功能,使用者可以獲得針對其特定職業細節和目標量身定制的專家建議。立即探索自由職業助理,將您的自由職業之旅提升到新的水平!

應用程式連結:https://freelanceassistant-lyzr.streamlit.app/

原始碼:https://github.com/isakshay007/freelance_assistant

如有任何疑問或支持,請隨時聯繫Lyzr。您可以透過以下連結了解更多有關 Lyzr 及其產品的資訊:

網址:Lyzr.ai
預約示範:預約示範
Discord:加入我們的 Discord 社群
Slack:加入我們的 Slack 頻道

以上是使用 Lyzr SDK 建立個人化自由助理的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:dev.to
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!